moth

Monarch Of The Hill game server
git clone https://git.woozle.org/neale/moth.git

moth / theme
Neale Pickett  ·  2024-04-17

index.html

 1<!DOCTYPE html>
 2<html lang="en">
 3  <head>
 4    <title>MOTH</title>
 5    <meta charset="utf-8">
 6    <meta name="viewport" content="width=device-width">
 7    <link rel="icon" href="luna-moth.svg">
 8    <link rel="stylesheet" href="basic.css">
 9    <script src="index.mjs" type="module" async></script>
10    <script src="background.mjs" type="module" async></script>
11  </head>
12  <body>
13    <h1 class="title" title="Monarch Of The Hill">MOTH</h1>
14    <main>
15      <div class="messages notification">
16      </div>
17
18      <form class="login">
19        Team ID: <input name="id"> <br>
20        Team name: <input name="name"> <br>
21        <input type="submit" value="Sign In">
22      </form>
23
24      <div class="puzzles"></div>
25    </main>
26      
27    <div class="notification" data-track-solved="no">
28      <p>
29        Solved puzzle tracking: <b>disabled</b>.
30      </p>
31      <p>
32        To avoid duplication of work, your team should coordinate.
33      </p>
34    </div>
35
36    <div class="toasts"></div>
37
38    <nav>
39      <ul>
40        <li><a href="scoreboard.html" target="_blank">Scoreboard</a></li>
41        <li><button class="logout">Sign Out</button></li>
42      </ul>
43    </nav>
44  </body>
45</html>