-
Notifications
You must be signed in to change notification settings - Fork 0
/
scores.html
36 lines (30 loc) · 925 Bytes
/
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
36
<!--------------------------------------------------------------------
| File: scores.html
|
| Purpose: This file contains the html code used on the scoreboard
|
|
|
| Author: Jordan Davis (4/27/2022)
|
|
| Change Log:
|
---------------------------------------------------------------------->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daily Scores</title>
<link rel="stylesheet" href="/public/scores.css">
<script type="text/javascript" src="/public/scores.js"></script>
</head>
<body onload="getScores()">
<header class="header">Daily Scores</header>
<table id="scoresTable">
</table>
</form>
</body>
<button class="returnToLogin" onclick="returnToLogin()">Return to Login</button>
</html>