-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleaderboard.html
57 lines (56 loc) · 2.42 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
<!-- leaderboard.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leaderboard - SegBook</title>
<link rel="stylesheet" href="static/css/styles.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.css">
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="datasets.html">Datasets</a>
<a href="leaderboard.html">Leaderboard</a>
<a href="tools.html">Tools</a>
</nav>
<div class="container">
<div class="section">
<h2>Leaderboard</h2>
<div class="leaderboard-menu">
<!-- Buttons for different JSON files -->
<button onclick="loadLeaderboard('Main.json')">Main</button>
<button onclick="loadLeaderboard('Abdomen.json')">Abdomen</button>
<button onclick="loadLeaderboard('Bone.json')">Bone</button>
<button onclick="loadLeaderboard('Disease.json')">Disease</button>
<button onclick="loadLeaderboard('Head and Neck.json')">Head and Neck</button>
<button onclick="loadLeaderboard('Necrosis.json')">Necrosis</button>
<button onclick="loadLeaderboard('Others.json')">Others</button>
<button onclick="loadLeaderboard('Pelvic.json')">Pelvic</button>
<button onclick="loadLeaderboard('Spine.json')">Spine</button>
<button onclick="loadLeaderboard('Thorax.json')">Thorax</button>
<button onclick="loadLeaderboard('Vessel.json')">Vessel</button>
</div>
<div class="table-container">
<table id="leaderboardTable">
<thead>
<!-- Table headers will be populated dynamically -->
</thead>
<tbody>
<!-- Table data will be populated dynamically -->
</tbody>
</table>
</div>
</div>
</div>
<!-- Leaderboard JavaScript -->
<script src="static/js/leaderboard.js"></script>
<footer>
<p>© 2024 SegBook. All rights reserved.</p>
</footer>
</body>
</html>