moth/theme/index.html

36 lines
922 B
HTML
Raw Normal View History

2018-09-19 17:56:47 -06:00
<!DOCTYPE html>
<html lang="en">
2018-09-19 17:56:47 -06:00
<head>
2019-02-22 17:43:04 -07:00
<title>MOTH</title>
2019-02-22 19:09:38 -07:00
<meta charset="utf-8">
2018-09-19 17:56:47 -06:00
<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>
2018-09-19 17:56:47 -06:00
</head>
<body>
<h1 class="title">MOTH</h1>
<main>
<div class="messages notification">
2020-02-29 17:12:35 -07:00
</div>
2019-02-22 17:43:04 -07:00
<form class="login">
Team ID: <input name="id"> <br>
2020-02-29 17:12:35 -07:00
Team name: <input name="name"> <br>
2019-02-22 19:09:38 -07:00
<input type="submit" value="Sign In">
</form>
<div class="puzzles"></div>
<div class="toasts"></div>
</main>
2018-09-19 17:56:47 -06:00
<nav>
<ul>
<li><a href="scoreboard.html" target="_blank">Scoreboard</a></li>
<li><button class="logout">Sign Out</button></li>
2018-09-19 17:56:47 -06:00
</ul>
</nav>
</body>
</html>