Started work on the multiplayer part of multiplayer game ( -_-)

This commit is contained in:
maxstrb 2025-11-23 22:30:57 +01:00
parent 9b3151b55d
commit 625d1e52fe
26 changed files with 587 additions and 437 deletions

View file

@ -1,30 +1,29 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/public/index.css">
<meta charset="UTF-8"/>
<title>Hello World!</title>
<script src="/public/index.js"></script>
</head>
<head>
<link rel="stylesheet" href="/public/index.css">
<meta charset="UTF-8">
<title>Hello World!</title>
<script src="/public/index.js"></script>
</head>
<body>
<nav>
<a>Profile</a>
<hr>
<a>New Game</a>
<a>Chat</a>
</nav>
<body>
<nav>
<a>Profile</a>
<hr>
<a>New Game</a>
<a>Chat</a>
</nav>
<main>
<main>
<form onsubmit="myFunction(); return false;">
<label for="fname">Message:</label>
<input type="text" id="inp" name="fname"><br>
<input type="submit" value="Submit">
</form>
<form onsubmit="myFunction(); return false;">
<label for="fname">Message:</label>
<input type="text" id="inp" name="fname"><br>
<input type="submit" value="Submit">
</form>
<ul id="messages"></ul>
</main>
</body>
<ul id="messages"></ul>
</main>
</body>
</html>