-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
51 lines (39 loc) · 1.09 KB
/
admin.html
File metadata and controls
51 lines (39 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
<link rel="stylesheet" href="./styles/nav.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/login.css">
<link rel="stylesheet" href="./styles/admin.css">
<title>Admin Page</title>
</head>
<body>
<div id="nav">
</div>
<h1 id="divtotal">
You have total <span id="user-total">0</span> entires.
</h1>
<table>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Password</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<!-- Here all rows will be appended -->
</tbody>
</table>
<div id="footer">
</div>
</body>
</html>
<script src="./scripts/admin.js" type="module">
</script>