Upload files to "src"

Signed-off-by: Ivor Barhansky <lopar@noreply.lopar.us>
This commit is contained in:
2024-06-20 12:17:27 +00:00
commit 6c0a75d48a
4 changed files with 213 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Battle</title>
</head>
<body>
<h1>Battle</h1>
<form id="joinForm">
<input type="text" id="username" placeholder="Enter your name" required>
<button type="submit">Join Game</button>
</form>
<div id="gameContainer" style="display: none;">
<div id="gameState"></div>
<div id="fighters"></div>
<select id="targetPlayer"></select>
<button value="basic_attack" id="submitMove">Basic Attack</button>
</div>
<script src="battle.js"></script>
</body>
</html>