2018-09-19 17:56:47 -06:00
|
|
|
<!DOCTYPE html>
|
2023-09-08 18:05:51 -06:00
|
|
|
<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">
|
2023-09-11 17:29:14 -06:00
|
|
|
<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>
|
2023-09-13 18:52:52 -06:00
|
|
|
<h1 id="title">[loading]</h1>
|
2023-09-08 18:05:51 -06:00
|
|
|
<main>
|
2023-09-13 18:52:52 -06:00
|
|
|
<section id="puzzle">
|
|
|
|
<p class="notification">
|
|
|
|
Starting script...
|
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
<section class="meta"></section>
|
2023-09-08 18:05:51 -06:00
|
|
|
<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">
|
2023-09-13 18:52:52 -06:00
|
|
|
<label for="answer">Answer:</label>
|
|
|
|
<input type="text" name="answer" id="answer"> <span class="answer_ok"></span>
|
|
|
|
<br>
|
2023-09-08 18:05:51 -06:00
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|
|
|
|
</main>
|
2023-09-13 18:52:52 -06:00
|
|
|
<div class="debug" class="notification"></div>
|
|
|
|
<div class="toasts"></div>
|
2018-09-19 17:56:47 -06:00
|
|
|
</body>
|
|
|
|
</html>
|