-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencrypt-it.html
More file actions
39 lines (36 loc) · 981 Bytes
/
encrypt-it.html
File metadata and controls
39 lines (36 loc) · 981 Bytes
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>
<head>
<title>Encrypt-It!</title>
<link rel="stylesheet" href="encrypt.css">
<script src="encrypt-it.js"></script>
</head>
<body>
<header>
<h1>Encrypt-It!</h1>
<h2>Translate any text message into a super-secret cipher!</h2>
</header>
<main>
<fieldset>
<legend>Text to Encrypt</legend>
<textarea id="input-text" rows="10" cols="60"
placeholder="Enter your message to encrypted here"></textarea>
</fieldset>
<fieldset>
<legend>Encrypt Options</legend>
<p>
<strong>Cipher Type: </strong>
<select id="cipher-type">
<option value="shift">Shift Cipher</option>
</select>
</p>
<button id="encrypt-it">Encrypt It!</button>
<button id="reset">Reset</button>
</fieldset>
<div id="result-area">
<h2>Result:</h2>
<p id="result"></p>
</div>
</main>
</body>
</html>