forked from X-DIABLO-X/LEADERBOARD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal_enhanced_index.html
37 lines (33 loc) · 1.2 KB
/
final_enhanced_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scaler Leaderboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Scaler Leaderboard</h1>
<div class="toggle-container">
<button class="dark-mode-toggle" onclick="toggleDarkMode()">Toggle Dark Mode</button>
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search by name..." aria-label="Search by name" onkeyup="filterLeaderboard()">
</div>
</div>
<table aria-label="Leaderboard">
<thead>
<tr>
<th onclick="sortTable(0)">Name</th>
<th onclick="sortTable(1)">CodeChef</th>
<th onclick="sortTable(2)">Codeforces</th>
<th onclick="sortTable(3)">AtCoder</th>
<th onclick="sortTable(4)">LeetCode</th>
</tr>
</thead>
<tbody id="leaderboardBody"></tbody>
</table>
</div>
<script src="script.js"></script>
</body>
</html>