tuxman/client/index.html

27 lines
1 KiB
HTML
Raw Normal View History

2023-06-14 01:18:01 +00:00
<!DOCTYPE html>
2023-06-13 03:47:43 +00:00
<html>
<head>
2023-06-15 21:17:48 +00:00
<link rel="stylesheet" href="css/main.css"/>
2023-06-17 00:38:55 +00:00
<script>var exports = {};</script>
2023-06-13 03:47:43 +00:00
</head>
<body>
2023-06-17 00:38:55 +00:00
<img src="img/atlas.png" id="atlas" style="display: none;"/>
<canvas id="canvas" style="display: none;"></canvas>
2023-06-15 21:17:48 +00:00
<style id="style"></style>
2023-06-14 01:18:01 +00:00
<div id="center">
<form id="join" autocomplete="off">
<input type="text" id="room_code" name="room_code" placeholder="Room Code">
2023-06-17 05:18:16 +00:00
<input type="text" id="player_name" name="name" placeholder="Player Name">
2023-06-14 01:18:01 +00:00
<input type="submit" value="Join!"/>
</form>
2023-06-17 05:34:20 +00:00
<input id="mapeditor" type="button" value="Map Editor">
<div id="lobby" style="display: none;">
2023-06-14 01:18:01 +00:00
<span>Players:</span>
<div id="players"></div>
<input type="button" id="start" value="Start Game"/>
</div>
</div>
2023-06-15 21:17:48 +00:00
<script src="js/main.js" type="module"></script>
2023-06-13 03:47:43 +00:00
</body>
</html>