tuxman/client/index.html
2023-06-13 21:18:01 -04:00

22 lines
723 B
HTML

<!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>