31 lines
789 B
HTML
31 lines
789 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Leaderboard</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<H1>Leaderboard</H1>
|
|
<button class="refresh-button" onclick="fetchLeaderboard()">⟳</button>
|
|
<table id="leaderboardTable">
|
|
<thead>
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>WPM</th>
|
|
<th>Accuracy (%)</th>
|
|
<th>Test Time (s)</th>
|
|
<th>Test Length (characters)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Rows will be filled by JavaScript -->
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|