-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Rust embedo</title>
<link rel="stylesheet" href="stylesheets/style.css"
</head>
<body>
<script type="module" src="scripts/index.js"></script>
<div class="centered">
<div>
<h3>Embedo</h3>
<p>Small toy application used for playing around with Rust compiled into Wasm embedded into js.</p>
</div>
<div class="padded">
<h3>Choose cipher</h3>
<select id="cipherSelect">
<option>Ceasar cipher</option>
<option>Columnar transposition cipher</option>
</select>
</div>
<div class="padded">
<label for="cipherOptions">Options:</label>
<div id="cipherOptions">
</div>
</div>
<div class="padded">
<input id="toEncrypt" />
<button id="encryptButton">Encrypt</button>
<input id ="toDecrypt" />
<button id="decryptButton">Decrypt</button>
<button id="clearButton">Clear</button>
</div>
</div>
</body>
</html>