-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
59 lines (48 loc) · 1.25 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
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<meta charset="UTF-8">
<html>
<head>
<title>Admin Panel</title>
<link rel="stylesheet" href="css/admin.css">
<script src="js/util.js"></script>
<script src="js/participants.js"></script>
<script src="js/questions.js"></script>
<script src="js/participantQuestions.js"></script>
<script src="js/admin.js"></script>
</head>
<body>
<h1>Admin Panel</h1>
<h2>Participants</h2>
<table id="participantTable">
<thead>
<tr>
<th>Name</th>
<th>Team</th>
<th>Affinity</th>
</tr>
</thead>
<tbody>
<!-- Rows will be populated here -->
</tbody>
</table>
<h2>Questions</h2>
<table id="questionTable">
<thead>
<tr>
<th>Question</th>
<th>Correct Answer</th>
<th>Wrong Answers</th>
<th>Emoji</th>
</tr>
</thead>
<tbody>
<!-- Question rows will be populated here -->
</tbody>
</table>
<!-- Questions and Answers Section -->
<h2>Questions and Answers</h2>
<div id="questionsAnswers">
<!-- Content will be populated here -->
</div>
</body>
</html>