-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (78 loc) · 2.76 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/preloader.css" />
<title>Leaderboard</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,500;0,600;0,900;1,100;1,200&family=Roboto:wght@900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./mouse.css" />
<script
src="https://kit.fontawesome.com/0ad26dfd7a.js"
crossorigin="anonymous"
></script>
<script src="app.js"></script>
</head>
<body>
<canvas id="nokey" style="background-color: #003044;"></canvas>
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<section>
<div class="main">
<div class="container-fluid">
<div class="row">
<div class="col-lg-3"></div>
<div class="col-lg-6">
<div class="card">
<div class="event-name">
<strong>QuaRunTime 3.0</strong>
</div>
<div class="card-title">
<strong>Leaderboard</strong>
</div>
<form class="form-inline">
<i class="fas fa-search search-icon"></i>
<input
class="form-control form-control-md w-80 active input-cont"
type="text"
placeholder="Search Your Name"
aria-label="Search"
onkeyup="searchName()"
id="myInput"
/>
</form>
<div class="table-responsive">
<table id="myTable" class="table">
<tr class="header">
<thead class="thead text-white">
<th scope="col">Rank</th>
<th scope="col">Name</th>
<th scope="col">Points</th>
</thead>
</tr>
</table>
</div>
</div>
</div>
<div class="col-lg-3"></div>
</div>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./mouse.js"></script>
</body>
</html>