-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecryptor.html
32 lines (32 loc) · 950 Bytes
/
decryptor.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
<!DOCTYPE html>
<html>
<head>
<title>Decryptor</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<h1 style="text-align: left; margin-left: 1%; clear: right;">Decryptor</h1>
<form action="index.html">
<button>Home</button>
</form>
</header>
<main id="encryptorMain">
<h2>Enter Encrypted Message:</h2>
<form>
<textarea name="" id="message" rows="3"></textarea>
</form>
<br>
<h2>
Enter Shift:
<input id="shift" type="number" min="0" max="67" />
</h2>
<br>
<h2>The Message: </h2>
<form>
<textarea name="" id="decryptedMessage" rows="3" readonly></textarea>
</form>
</main>
<script src="script.js"></script>
</body>
</html>