-
Notifications
You must be signed in to change notification settings - Fork 2
/
manage.html
executable file
·65 lines (53 loc) · 1.21 KB
/
manage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html>
<meta name="author" value="Iszak Bryan" />
<meta name="description" value="" />
<head>
<style type="text/css">
body {
font-size: 0.8em;
font-family: Arial;
}
table {
width: 100%;
}
th.center,
td.center {
text-align: center;
}
th.left,
td.left {
text-align: left;
}
th.right,
td.right {
text-align: right;
}
</style>
<title>Form Populator</title>
</head>
<body>
<h1>Populator Manager</h1>
<table id="manager">
<thead>
<tr>
<th class="left">Email Address</th>
<th class="center">Username</th>
<th class="center">Password</th>
<th class="center">First Name</th>
<th class="center">Last Name</th>
<th class="center">Gender</th>
<th class="center">Date of Birth</th>
<th class="center">Address</th>
<th class="center">Postcode</th>
<th class="center">Phone Number</th>
<th class="center">Country</th>
<th class="center">Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script src="manager.js"></script>
</body>
</html>