mirror of https://github.com/dirtbags/moth.git
30 lines
843 B
HTML
30 lines
843 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Redeem Token</title>
|
|
<link rel="stylesheet" href="basic.css">
|
|
<meta name="viewport" content="width=device-width">
|
|
<script src="token.mjs" type="module" async></script>
|
|
</head>
|
|
<body>
|
|
<h1>Redeem Token</h1>
|
|
<main>
|
|
<p>
|
|
Have you found a token?
|
|
</p>
|
|
<p></p>
|
|
Tokens look like
|
|
<code>category:5:xylep-radar-nanox</code>
|
|
<p>
|
|
Tokens may be redeemed here for points in their category.
|
|
Tokens can appear anywhere: online, on slips of paper, projected onto screens…
|
|
</p>
|
|
</main>
|
|
<form class="token"</form>
|
|
<label for="token">Token:</label> <input type="text" name="token" id="token"> <br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
<div class="toasts"></div>
|
|
</body>
|
|
</html>
|