diff options
Diffstat (limited to 'client/index.html')
-rw-r--r-- | client/index.html | 22 |
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> |