-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Am I in the Fade?</title>
<script src="./src/main.ts" type="module"></script>
</head>
<body>
<div class="container">
<header>
<nav>
<ul>
<li><a href="..">← View other pages</a></li>
</ul>
<ul>
<li><button role="button" class="themeswitcher" id="themeSwitch">Switch Theme</button></li>
</ul>
</nav>
<h1 class="title">Am I in the Fade?</h1>
</header>
<main>
<div>
<label class="label" for="portalglyphsInput">Portalglyphs / Galactic Coordinates:</label>
<input class="input" type="text" id="portalglyphsInput">
<button role="button" class="is-danger" id="delButton" type="button">← Delete</button>
<div class="portal-buttons grid"></div>
<p>
<output class="glyphs" id="glyphDisplay"></output>
</p>
</div>
<div class="actions">
<input role="button" type="submit" value="Check" id="submitBtn">
<input role=" button" type="reset" value="Reset Input" id="resetBtn">
</div>
<p class=" output">
<output id="output"></output>
</p>
</main>
</div>
</body>
</html>