moth/theme/index.html

35 lines
790 B
HTML
Raw Normal View History

2018-09-19 17:56:47 -06:00
<!DOCTYPE html>
<html>
<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="stylesheet" href="basic.css">
<script src="moth.js"></script>
2020-02-29 17:12:35 -07:00
<link rel="manifest" href="manifest.json">
2018-09-19 17:56:47 -06:00
</head>
<body>
2019-02-22 17:43:04 -07:00
<h1 id="title">MOTH</h1>
2018-09-19 17:56:47 -06:00
<section>
2020-02-29 17:12:35 -07:00
<div id="messages">
<div id="notices"></div>
</div>
2019-02-22 17:43:04 -07:00
2019-02-22 19:09:38 -07:00
<form id="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 id="puzzles"></div>
2020-02-29 17:12:35 -07:00
</section>
2018-09-19 17:56:47 -06:00
<nav>
<ul>
<li><a href="scoreboard.html">Scoreboard</a></li>
2019-02-22 19:09:38 -07:00
<li><a href="logout.html">Sign Out</a></li>
2018-09-19 17:56:47 -06:00
</ul>
</nav>
</body>
</html>