summaryrefslogtreecommitdiff
path: root/client/index.html
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-06-13 21:18:01 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-06-13 21:18:01 -0400
commitedcdd665e116c4799c712f460bb77776e9d7f117 (patch)
tree7db4b232e7a24ea31532d3000142b782e56cb025 /client/index.html
parentinitial (diff)
downloadtuxman-edcdd665e116c4799c712f460bb77776e9d7f117.tar.gz
tuxman-edcdd665e116c4799c712f460bb77776e9d7f117.tar.bz2
tuxman-edcdd665e116c4799c712f460bb77776e9d7f117.zip
movement
Diffstat (limited to 'client/index.html')
-rw-r--r--client/index.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/client/index.html b/client/index.html
index 9ba6b4c..0740f5f 100644
--- a/client/index.html
+++ b/client/index.html
@@ -1,8 +1,21 @@
+<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/css/main.css"/>
</head>
<body>
+ <div id="center">
+ <form id="join" autocomplete="off">
+ <input type="text" id="room_code" name="room_code" placeholder="Room Code">
+ <input type="text" id="name" name="name" placeholder="Player Name">
+ <input type="submit" value="Join!"/>
+ </form>
+ <div id="lobby">
+ <span>Players:</span>
+ <div id="players"></div>
+ <input type="button" id="start" value="Start Game"/>
+ </div>
+ </div>
<script src="/js/main.js" type="module"></script>
</body>
</html>