moth

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

moth / theme
Neale Pickett  ·  2023-09-13

token.html

 1<!DOCTYPE html>
 2<html lang="en">
 3  <head>
 4    <title>Redeem Token</title>
 5    <link rel="stylesheet" href="basic.css">
 6    <meta name="viewport" content="width=device-width">
 7    <script src="token.mjs" type="module" async></script>
 8  </head>
 9  <body>
10    <h1>Redeem Token</h1>
11    <main>
12      <p>
13        Have you found a token?
14      </p>
15      <p></p>
16        Tokens look like
17        <code>category:5:xylep-radar-nanox</code>
18      <p>
19        Tokens may be redeemed here for points in their category.
20        Tokens can appear anywhere: online, on slips of paper, projected onto screens…
21      </p>
22    </main>
23    <form class="token"</form>
24      <label for="token">Token:</label> <input type="text" name="token" id="token"> <br>
25      <input type="submit" value="Submit">
26    </form>
27    <div class="toasts"></div>
28  </body>
29</html>