This commit is contained in:
Kim Ravn Hansen
2025-09-15 11:28:25 +02:00
parent 58c48fdc4b
commit c19557ba33
19 changed files with 1546 additions and 26 deletions

32
server/frontend/index.html Executable file
View File

@@ -0,0 +1,32 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WebSocket MUD</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="style.sass" />
<link rel="manifest" href="manifest.json" />
<lin rel="icon" href="favicon.ico" />
</head>
<body>
<div id="container">
<div id="status" class="connecting">Connecting...</div>
<div id="output"></div>
<div id="input-container">
<input
type="text"
autocomplete="off"
id="input"
placeholder="Enter command..."
disabled
autocorrect="off"
autocomplete="off"
/>
</div>
</div>
<script type="module" src="client.js"></script>
</body>
</html>