-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 998 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coordinate Converter</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" id="themeSwitch">Switch Theme</button></li>
</ul>
</nav>
<h1 class="title">Coordinate Converter</h1>
</header>
<main>
<p>Converts from Glyphs or Galactic Coordinates to the Coordinate format of the save file JSON.</p>
<section>
<h2 class="title">Input</h2>
<input id="dataInput" class="input" type="text" maxlength="19" placeholder="Coordinates or Glyphs">
</section>
<section>
<h2 class="title">Output</h2>
<output id="output"></output>
<button class="button" id="copyBtn" type="submit">Copy</button>
</section>
</main>
</div>
</body>
</html>