-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-leaderboard.html
37 lines (36 loc) · 1.33 KB
/
update-leaderboard.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
<!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="update-leaderboard main.css">
<title>Leader Board - The Board Bunch</title>
</head>
<body>
<div id="containerDiv">
<header>
<img src="/images/logo.jpg" alt="">
<h1>Leader Board</h1>
</header>
<div id="title">
<div class="titleName"><h2>Name</h2></div>
<div class="titleScore"><h2>Score</h2></div>
</div>
<div id="enterNameAndScore">
<div id="enterName"><input type="text" placeholder="Enter"></div>
<div id="enterScore"><input type="number" value="0"></div>
<button onclick="enterNameAndScore()">✔️</button>
</div>
<div class="nameAndScore">
<div class="name"><h3></h3></div>
<div class="score"><h3></h3></div>
</div>
<div id="namesAndScoresContainer">
</div>
<button id="clearLeaderboardButton" onclick="clearLeaderboard()">Clear Leaderboard</button>
</div>
</body>
</html>
<script type="module" src="Firebase.js"></script>
<script defer src="update-leaderboard Script.js"></script>