-
Notifications
You must be signed in to change notification settings - Fork 1
/
LiveCipherer.html
46 lines (45 loc) · 1.61 KB
/
LiveCipherer.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
<!DOCTYPE html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZJGXLN7TRR"></script>
<script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-ZJGXLN7TRR');</script>
<meta charset="UTF-8">
<title>Wolfpack: Live Cipherer</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="mobile-web-app-capable">
<link href="res/Elegantthemes-Beautiful-Flat-One-Color-Submarine.png" rel="icon" sizes="128x128">
<link href="Stylesheet-Global.css" rel="stylesheet">
<link href="Stylesheet.css" rel="stylesheet">
<script src="Javascript.js"></script>
</head>
<body onload="load()">
<div id="wrapper">
<div id="wheel-row">
<div id="wheels">
<span id="first-wheel">
<input type="text" value="A">
<input type="button" value="▼">
<input type="button" value="▲">
</span>
<span id="second-wheel" >
<input type="text" value="A">
<input type="button" value="▼">
<input type="button" value="▲">
</span>
<span id="third-wheel">
<input type="text" value="A">
<input type="button" value="▼">
<input type="button" value="▲">
</span>
</div>
<span class="tooltip">
<input id="use-private-key" type="checkbox">
<label>Use private key</label>
<span class="tooltiptext">Use the first three charasacters per row as private key.</span>
</span>
</div>
<textarea id="upper-input"></textarea>
<textarea id="lower-input"></textarea>
</div>
</body>
</html>