26 lines
829 B
HTML
26 lines
829 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>User Dashboard</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>User Dashboard</h1>
|
||
|
<div id="username">
|
||
|
<!-- Username will be displayed here -->
|
||
|
</div>
|
||
|
<h2>Most Recent Test Result</h2>
|
||
|
<div id="testResults">
|
||
|
<!-- Test results will be displayed here -->
|
||
|
</div>
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
</html>
|