summaryrefslogtreecommitdiff
path: root/client/index.html
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-06-29 11:40:46 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-06-29 11:40:46 -0400
commitf5fcce110a915fca1b114001962170733276e5df (patch)
tree6ce82c649d7377b42e75c9feb88d73e4aa15d713 /client/index.html
parentghost (diff)
downloadtuxman-f5fcce110a915fca1b114001962170733276e5df.tar.gz
tuxman-f5fcce110a915fca1b114001962170733276e5df.tar.bz2
tuxman-f5fcce110a915fca1b114001962170733276e5df.zip
audio, finalize gameplay, wrap around map, stuff
Diffstat (limited to 'client/index.html')
-rw-r--r--client/index.html22
1 files changed, 12 insertions, 10 deletions
diff --git a/client/index.html b/client/index.html
index 251c33d..3145ab0 100644
--- a/client/index.html
+++ b/client/index.html
@@ -8,16 +8,18 @@
<canvas id="canvas" style="display: none;"></canvas>
<style id="style"></style>
<div id="center">
- <form id="join" autocomplete="off">
- <input type="text" id="room_code" name="room_code" placeholder="Room Code">
- <input type="text" id="player_name" name="name" placeholder="Player Name">
- <input type="submit" value="Join!"/>
- </form>
- <input id="mapeditor" type="button" value="Map Editor">
- <div id="lobby" style="display: none;">
- <span>Players:</span>
- <div id="players"></div>
- <input type="button" id="start" value="Start Game"/>
+ <div id="center-inner">
+ <form id="join" autocomplete="off">
+ <input type="text" id="room_code" name="room_code" placeholder="Room Code">
+ <input type="text" id="player_name" name="name" placeholder="Player Name">
+ <input type="submit" value="Join!"/>
+ </form>
+ <input id="mapeditor" type="button" value="Map Editor">
+ <div id="lobby" style="display: none;">
+ <span>Players:</span>
+ <div id="players"></div>
+ <input type="button" id="start" value="Start Game"/>
+ </div>
</div>
</div>
<script src="js/main.js" type="module"></script>