This commit is contained in:
ahaas25
2025-02-23 23:21:00 -05:00
parent bcade66f5d
commit d4bf160271
9 changed files with 10990 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Typing Test</title>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="hud">
<%- include('topbar.ejs')%>
</div>
<div class="centered-text">
<h1>Keybinds</h1>
<p>Tab - restart test</p>
</div>
</body>
</html>
<script>
themePage();
</script>
+41
View File
@@ -0,0 +1,41 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Typing Test</title>
<script src="two.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="hud">
<%- include('topbar.ejs')%>
<div id="aux-bar">
<table>
<tr>
<td class="aux-row">Words</td>
<td class="aux-row">Timed</td>
<td class="aux-row">Prompt</td>
</tr>
</table>
</div>
<div id="selection-bar">
<table>
<tr>
<td class="select-row">5</td> <!-- Generate these -->
<td class="select-row">10</td> <!-- Generate these -->
<td class="select-row">25</td> <!-- Generate these -->
<td class="select-row">50</td> <!-- Generate these -->
<td class="select-row">100</td> <!-- Generate these -->
</tr>
</table>
</div>
</div>
<div id="typing-game"></div>
</body>
</html>
<script>
pageSetup();
curse();
draw();
</script>
+20
View File
@@ -0,0 +1,20 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Typing Test</title>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="hud">
<%- include('topbar.ejs')%>
</div>
<div class="centered-text">
<h1>Leaderboard</h1>
</div>
</body>
</html>
<script>
themePage();
</script>
+20
View File
@@ -0,0 +1,20 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Typing Test</title>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="hud">
<%- include('topbar.ejs')%>
</div>
<div class="centered-text">
<h1>My Stats</h1>
</div>
</body>
</html>
<script>
themePage();
</script>
+10
View File
@@ -0,0 +1,10 @@
<div id="top-bar">
<table>
<tr>
<td><a class="top-row" href="/">Play</a></td>
<td><a class="top-row" href="/stats">My Stats</a></td>
<td><a class="top-row" href="/leaderboard">Leaderboard</a></td>
<td><a class="top-row" href="/about">About</a></td>
</tr>
</table>
</div>