summaryrefslogtreecommitdiff
path: root/client/index.html
blob: 50ae8efe3750a923cd40dde28ee0aec327eac902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="/css/main.css"/>
    </head>
    <body>
        <div id="center">
            <div id="fps"></div>
            <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>
		    <canvas id="can"></canvas>
        </div>
        <script src="/js/main.js" type="module"></script>
    </body>
</html>