-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAdministratorPage.html
91 lines (70 loc) · 1.06 KB
/
AdministratorPage.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C/DTD XHTML 1.1//EN"
"http://www.w3.org/ter/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="StyleSheetAdmin.css">
<title>
Administrator Page
</title>
</head>
<body>
<div class="Container">
<div class="Header">
Admin Page
</div>
<div class="Menu">
<div class="Stats">
Stats
</div>
<div class="Users">
Users
</div>
</div>
<div class="Panel">
<div class="Number">
No.
<br />
1
<br />
2
</div>
<div class="Status">
Status
<br />
approved
<br />
pending
</div>
<div class="ID">
ID#
<br />
AB-0000
<br />
AB-0001
</div>
<div class="Name">
Full Name
<br />
Batje1
<br />
Batje2
</div>
<div class="Date">
Date
<br />
20/01/2012
<br />
21/01/2012
</div>
<div class="Actions">
Actions
<br />
Accept / Deny
<br />
Accept / Deny
</div>
</div>
</div>
</body>
</html>