36 lines
1011 B
HTML
36 lines
1011 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>
|
|
<nav id="navbar">
|
|
<a href="/typing/pages/account/index.html">Account</a>
|
|
<a href="/typing/pages/test/index.html">Test</a>
|
|
<a href="/typing/pages/leaderboard/index.html">Leaderboard</a>
|
|
<a href="/typing/pages/test-settings/index.html">Test Settings</a>
|
|
</nav>
|
|
<H1>Leaderboard</H1>
|
|
<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>
|