-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdashboard.html
48 lines (36 loc) · 1.28 KB
/
dashboard.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/css/style.css">
</head>
<body class="dashboard">
<!-- Navigation -->
<div class="navigation">
<div class="innerNavigation">
<input id="btnLogout" type="button" value="Logout" class="btnMenu">
</div>
</div>
<div class="description">
<h1 class="page-header" align="center">DASHBOARD</h1>
The admin dashboard.<br><br>
</div>
<!-- Buttons -->
<div class="grid">
<div class="buttons buttons-center">
<button id="btn0" onclick="" type="button">Edit question</button>
<button id="btn1" onclick="" type="button">View result</button>
</div>
</div>
</body>
<script type="text/javascript">
document.getElementById("btnLogout").onclick = function () {
location.href = "index.html";
};
document.getElementById("btn0").onclick = function () {
location.href = "php/managequestion.php";
};
document.getElementById("btn1").onclick = function () {
location.href = "report.html";
};
</script>
</html>