-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
28 lines (22 loc) · 825 Bytes
/
games.html
File metadata and controls
28 lines (22 loc) · 825 Bytes
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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="css/games.css">
<title>Speedrun Ranking Board</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.4.5/fuse.min.js"></script>
<script type="module" src="games.js"></script>
</head>
<body>
<overlay>
<div style="overflow:hidden !important;">
<h1>Searching for games...</h1>
<div class="loader"></div>
</div>
</overlay>
<main>
<h1>Which game do you wanna see ranking for?</h1>
<input id="search_text" type="text" placeholder="Game name here..." disabled/>
<div class="list"></div>
</main>
</body>