-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscores.html
35 lines (35 loc) · 1.17 KB
/
scores.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
<!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="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="./assets/css/scores.css">
<title>Scores</title>
</head>
<body onload="displayScores()">
<div class="enter-score hide">Enter your initials!
<form id="submit-form" style="display: inline">
<input type="text" id="input-initials">
<button id="submit-button" type="submit">Submit</button>
</form>
</div>
<div class="scores-table">
<button id="return-to-index">Back to Quiz</button>
<button id="clear-button">Clear Scores</button>
<table id="score-table-data">
<thead>
<tr>
<th></th>
<th>Initials</th>
<th>Score</th>
</tr>
</thead>
<tbody id="score-body"></tbody>
</table>
</div>
<script src="./assets/js/scores.js"></script>
<script src="./assets/js/logic.js"></script>
</body>
</html>