moth/theme/puzzle.html

38 lines
1020 B
HTML
Raw Normal View History

2018-09-19 17:56:47 -06:00
<!DOCTYPE html>
<html>
<head>
<title>Puzzle</title>
<link rel="stylesheet" href="basic.css">
<meta name="viewport" content="width=device-width">
2018-10-02 19:21:54 -06:00
<meta charset="utf-8">
2019-02-22 20:46:52 -07:00
<script src="puzzle.js"></script>
2018-09-19 17:56:47 -06:00
<script>
2018-09-19 17:56:47 -06:00
</script>
</head>
<body>
<h1>Puzzle</h1>
<section>
2019-02-22 20:46:52 -07:00
<div id="puzzle"><span class="spinner"></span></div>
2018-09-21 17:45:28 -06:00
<ul id="files"></ul>
<p>Puzzle by <span id="authors"></span></p>
2018-09-19 17:56:47 -06:00
</section>
2019-02-22 20:46:52 -07:00
<div id="messages"></div>
<form>
<input type="hidden" name="cat">
<input type="hidden" name="points">
2020-03-10 13:31:38 -06:00
<input type="hidden" name="xAnswer">
Team ID: <input type="text" name="id"> <br>
Answer: <input type="text" name="answer" id="answer"> <span id="answer_ok"></span><br>
<input type="submit" value="Submit">
</form>
<div id="devel"></div>
2018-09-19 17:56:47 -06:00
<nav>
<ul>
2019-02-22 19:09:38 -07:00
<li><a href="index.html">Puzzles</a></li>
2018-09-19 17:56:47 -06:00
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
</body>
</html>