mirror of https://github.com/dirtbags/moth.git
36 lines
922 B
HTML
36 lines
922 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>MOTH</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="icon" href="luna-moth.svg">
|
|
<link rel="stylesheet" href="basic.css">
|
|
<script src="index.mjs" type="module" async></script>
|
|
<script src="background.mjs" type="module" async></script>
|
|
</head>
|
|
<body>
|
|
<h1 class="title">MOTH</h1>
|
|
<main>
|
|
<div class="messages notification">
|
|
</div>
|
|
|
|
<form class="login">
|
|
Team ID: <input name="id"> <br>
|
|
Team name: <input name="name"> <br>
|
|
<input type="submit" value="Sign In">
|
|
</form>
|
|
|
|
<div class="puzzles"></div>
|
|
|
|
<div class="toasts"></div>
|
|
</main>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="scoreboard.html" target="_blank">Scoreboard</a></li>
|
|
<li><button class="logout">Sign Out</button></li>
|
|
</ul>
|
|
</nav>
|
|
</body>
|
|
</html>
|