-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
50 lines (46 loc) · 1.68 KB
/
admin.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Admin Page</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css" />
<link rel="stylesheet" href="/css/admin.css">
<link rel="stylesheet" href="/css/global.css">
</head>
<body>
<nav class="navbar">
<img id="ok" src="./assets/ee.png" alt="logo" width="60vw" height="60vh" style="float: left;">
<h1 class="heading-primary">
Admin<span>Page</span>
</h1>
</nav>
<div class="container">
<div class="table-section">
<table id="table">
<tr>
<th colspan="3" class="thh" style="border-right: 1px solid white;">User Details</th>
<th colspan="6" class="thh">Accuracy</th>
</tr>
<tr>
<th>USER ID</th>
<th>NAME</th>
<th>EMAIL</th>
<th>CLUE-1</th>
<th>CLUE-2</th>
<th>CLUE-3</th>
<th>CLUE-4</th>
<th>CLUE-5</th>
<th>CLUE-6</th>
</tr>
</table>
</div>
<button class="btn">Logout</button>
</div>
<script src="https://www.gstatic.com/firebasejs/4.3.0/firebase.js"></script>
<script src="/js/config.js"></script>
<script src="/js/admin.js"></script>
</body>
</html>