-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 2.01 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en" manifest="cache.manifest">
<head>
<meta charset="UTF-8">
<meta name="author" content="Thomas Grinderslev">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>@-ms-viewport{width: device-width !important}</style>
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Geocaching Gade Solver</title>
<link href='http://fonts.googleapis.com/css?family=Gochi+Hand' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/text.css">
<script type="text/javascript" src="scripts/base.js" async></script>
<script type="text/javascript" src="scripts/cache-control.js" async></script>
</head>
<body>
<form>
<h1 id="app-title">Geocaching Gade Solver</h1>
<p>This webapp aims to help you solve Gade problems when geocaching.</p>
<noscript>
<p>Unfortunately nothing works when you have JavaScript turned off. Please enable JavaScript and reload the page.</p>
</noscript>
<p><label for="cipher-input">Input all given ciphers in whatever order you like.</label></p>
<p>
<input type="text" pattern="(\d|\.|\,|\ )*" id="cipher-input" placeholder="Eg. 123, 1984, 3.14" autofocus>
</p>
<h3>Sorted ciphers</h3>
<p>
<output id="cipher-output"></output>
</p>
<h3>Mapped ciphers</h3>
<div class="table-scroller">
<table class="inner-borders">
<thead id="alphabet-output-headers"></thead>
<tbody id="alphabet-output-cells"></tbody>
</table>
</div>
<h3>Coordinate converter</h3>
<section class="coordinate-converter">
<p>
N <input id="coordinate-n-1" value="ab" type="text" class="xsmall">° <input id="coordinate-n-2" type="text" value="cd.efg" class="small">
<br>
E <input id="coordinate-e-1" value="ab" type="text" class="xsmall">° <input id="coordinate-e-2" type="text" value="cd.efg" class="small">
</p>
<p>
<output id="coordinate-n-output"></output>
<br>
<output id="coordinate-e-output"></output>
</p>
</section>
</form>
</body>
</html>