index.html 1.21 KB
Newer Older
Alexander Bazo committed
1 2 3 4 5 6 7 8 9 10
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>Star Gazer</title>
    <link rel="stylesheet" href="resources/css/default.css">
</head>

<body>
11 12
    <div id="startScreen">
        <div id="startTitle">Star Gazer 2000</div>
13 14
        <div id="startMenu">
            <h1>Options</h1>
15 16 17 18 19 20 21 22 23 24 25 26
            <span class="option">
                <input type="checkbox" id="useMouseInput" name="useMouseInput">
                <label for="useMouseInput">Use mouse input</label>
            </span>
            <span class="option">
                <input type="checkbox" id="showDebugInfo" name="showDebugInfo" checked>
                <label for="showDebugInfo">Show debug info</label>
            </span>
            <span class="option">
                <input type="checkbox" id="logToConsole" name="logToConsole" checked>
                <label for="logToConsole">Show logs in console</label>
            </span>
27
        </div>
28 29
        <div id="startButton">Start Game</div>
        <div id="versionInfo"></div>
30 31 32
    </div>
    <canvas class="hidden">
    </canvas>
Alexander Bazo committed
33 34 35 36
    <script type="application/javascript" src="vendors/gazeclient.js"></script>
    <script type="module" src="resources/js/index.js"></script>
</body>

37
</html>