moth/theme/puzzle.html

35 lines
1.0 KiB
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>
<title>Puzzle</title>
<meta name="viewport" content="width=device-width">
2018-10-02 19:21:54 -06:00
<meta charset="utf-8">
<link rel="icon" href="luna-moth.svg">
<link rel="stylesheet" href="basic.css">
2023-09-12 17:30:36 -06:00
<script src="background.mjs" type="module" async></script>
<script src="puzzle.mjs" type="module" async></script>
2018-09-19 17:56:47 -06:00
</head>
<body>
<h1 id="title">[loading]</h1>
<main>
<section id="puzzle">
<p class="notification">
Starting script...
</p>
</section>
<section class="meta"></section>
<ul id="files"></ul>
<p>Puzzle by <span id="authors">[loading]</span></p>
</section>
2023-09-08 18:11:36 -06:00
<form class="answer">
<label for="answer">Answer:</label>
<input type="text" name="answer" id="answer"> <span class="answer_ok"></span>
<br>
<input type="submit" value="Submit">
</form>
</main>
<div class="debug" class="notification"></div>
<div class="toasts"></div>
2018-09-19 17:56:47 -06:00
</body>
</html>