generated from jm1021/leuck_reunion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleaderboard.html
183 lines (179 loc) · 7.26 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html>
<head>
<title>Binary Games by JCK</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<noscript
><link rel="stylesheet" href="assets/css/noscript.css"
/></noscript>
</head>
<body class="is-preload" onload="leaderboard()">
<div id="wrapper">
<div
class="navContainer"
style="display: flex; justify-content: space-between"
>
<a
href="https://toby-leeder.github.io/binarygames-frontend/escaperoom.html/"
class="button"
style="margin: 2rem 0rem 0rem 0rem; font-size: 1rem"
onclick="localStorage.clear()"
>< <span style="font-size: 0.85rem">Log Out</span></a
>
<a
href="https://toby-leeder.github.io/binarygames-frontend/escaperoom.html/account.html"
class="button"
style="margin: 2rem 0rem 0rem 0rem; font-size: 1rem"
onclick=""
>Account</a
>
</div>
<!-- Header -->
<header
id="header"
class="alt"
style="padding: 3rem 0rem 2rem 0rem"
>
<h1><strong>Binary Games</strong></h1>
<p>Speedrun leaderboard ranked by time!</p>
</header>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="escaperoom.html">Room</a></li>
<li>
<a href="leaderboard.html" class="active"
>Leaderboard</a
>
</li>
<li><a href="binaryRacer.html">Games</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- First Section -->
<section id="first" class="main special">
<header class="major">
<h2>Leaderboard</h2>
</header>
<h4>Search by Name</h4>
<input
type="username"
id="searchInput"
style="width: 60%; margin-bottom: 1rem"
oninput="filterTable()"
/>
<table class="board">
<thead>
<td style="width: 30%">Rank</td>
<td style="width: 40%">Name</td>
<td style="width: 30%">Time (hh:mm:ss)</td>
</thead>
<tbody id="tbody"></tbody>
</table>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<header
id="header"
class="alt"
style="margin: 0px; padding: 0px"
>
<span
class="logo"
style="
width: 100%;
padding-bottom: 20px;
margin: 40px auto;
"
><img
src="https://user-images.githubusercontent.com/111464932/233187334-7ad51d02-50ad-46cc-b634-aa8359a152b3.png"
alt=""
style="width: 175px"
/></span>
</header>
<section>
<h2>Created by Team JCK</h2>
<p>
2022-2023 Trimester 3 final project. <br /><br />
Contributors: <br />
Aiden Huynh, Toby Leeder, Azeem Khan, Dash Penning, Ekam
Kaire, Nathan Capule, Colin Mills, Ishi Singh.
</p>
<div
class="navContainer"
style="
display: flex;
justify-content: center;
margin: 0.75rem 0rem 0rem 0rem;
"
>
<a
href="http://scrum.binarygames.tech/"
class="button"
style="
margin: 0rem 2rem 0rem 0rem;
font-size: 0.75rem;
"
onclick=""
target="_blank"
>Scrum Board</a
>
<a
href="http://calendar.binarygames.tech"
class="button"
style="
margin: 0rem 0rem 2rem 0rem;
font-size: 0.75rem;
"
onclick=""
target="_blank"
>Calendar</a
>
<a
href="http://backend.binarygames.tech"
class="button"
style="
margin: 0rem 0rem 2rem 2rem;
font-size: 0.75rem;
"
onclick=""
target="_blank"
>Backend</a
>
</div>
<ul class="icons">
<li>
<a
href="https://github.com/toby-leeder/binarygames-frontend"
class="icon brands fa-github alt"
target="_blank"
><span class="label">GitHub</span></a
>
</li>
</ul>
</section>
<p class="copyright">
Binary Games by JCK. Original template by:
<a href="https://html5up.net">HTML5 UP</a>.
</p>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/leaderboard.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/stopCheating.js"></script>
</body>
</html>