forked from SanjinDedic/WebQuiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
32 lines (30 loc) · 980 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trivia Admin Page</title>
<link rel="stylesheet" href="css/admin.css">
</head>
<body>
<header class="admin-header">
<h1 class="trivia-theme">Trivia Admin Panel</h1>
</header>
<nav class="admin-navbar">
<a href="#add-questions" class="nav-item">Add Questions</a>
<a href="#reset-database" class="nav-item">Reset Database</a>
<a href="table.html" class="nav-item">Live Table</a>
</nav>
<main>
<section id="add-questions">
<!-- Add your form for adding questions here -->
</section>
<section id="reset-database">
<!-- Add your form for resetting the database here -->
</section>
<section id="live-table">
<!-- Add your live table component here -->
</section>
</main>
</body>
</html>