2018-09-19 17:56:47 -06:00
|
|
|
<!DOCTYPE html>
|
2023-09-13 18:52:52 -06:00
|
|
|
<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">
|
2023-09-11 17:29:14 -06:00
|
|
|
<link rel="icon" href="luna-moth.svg">
|
2019-02-21 22:08:21 -07:00
|
|
|
<link rel="stylesheet" href="basic.css">
|
2023-09-13 18:52:52 -06:00
|
|
|
<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>
|
2023-09-13 18:52:52 -06:00
|
|
|
<h1 class="title">MOTH</h1>
|
2023-09-11 17:29:14 -06:00
|
|
|
<main>
|
2023-09-13 18:52:52 -06:00
|
|
|
<div class="messages notification">
|
2020-02-29 17:12:35 -07:00
|
|
|
</div>
|
2019-02-22 17:43:04 -07:00
|
|
|
|
2023-09-13 18:52:52 -06:00
|
|
|
<form class="login">
|
2019-02-21 22:08:21 -07:00
|
|
|
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>
|
2019-02-21 22:08:21 -07:00
|
|
|
|
2023-09-13 18:52:52 -06:00
|
|
|
<div class="puzzles"></div>
|
2023-09-11 17:29:14 -06:00
|
|
|
</main>
|
2023-09-14 17:42:02 -06:00
|
|
|
|
|
|
|
<div class="notification" data-track-solved="no">
|
|
|
|
<p>
|
|
|
|
Solved puzzle tracking: <b>disabled</b>.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Your team's Incident Coordinator can help coordinate team activity.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="toasts"></div>
|
|
|
|
|
2018-09-19 17:56:47 -06:00
|
|
|
<nav>
|
|
|
|
<ul>
|
2023-09-13 18:52:52 -06:00
|
|
|
<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>
|