-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (44 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Sea Dog Cypher Wheel</title>
<link rel="stylesheet" href="base.css">
</head>
<body>
<div class="wheelholder">
<div class="inner">
<img src="inside.png" alt="inner ring">
</div>
<div class="outter" id="outterring">
<img src="outter2.jpg" alt="outter ring">
</div>
</div>
<div class="controls">
<button onClick="spinLeft()">Left</button><button onClick="spinRight()">Right</button>
</div>
<div class="options">
<span>
<input type="checkbox" id="encode" name="encode" onClick="parseThing()">
<label for="encode">Encode (Grey to Gold)</label>
</span>
<span>
<input type="checkbox" id="donotomit" name="donotomit" onClick="parseThing()">
<label for="donotomit">Do not omit unknown chars</label>
</span>
<span>
<input type="checkbox" id="replaceunknown" name="replaceunknown" onClick="parseThing()">
<label for="replaceunknown">Replace unknown chars with "?"</label>
</span>
</div>
<div class="inputoutput">
<label for="fname">Input:</label>
<input type="text" id="input" name="input">
<label for="fname">Output:</label>
<input type="text" id="output" name="output" readonly>
</div>
<script src="cypher.js"></script>
</body>
</html>