-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Encryption app</title>
</head>
<body>
<h1>Encryption app</h1>
<div class="container">
<div class="text">
<label for="input"> Enter text to encrypt/decrypt </label>
<textarea name="input area" id="input" cols="30" rows="10"></textarea>
</div>
<div class="key" >
<label label for="key" >Enter numerical key</label>
<input id="key" type="number" placeholder="eg 1234">
</div>
<div>
<button class="buttons" id="encryptButton">Encrypt</button>
<button class="buttons" id="decryptButton">Decrypt</button>
</div>
<div class="text">
<label for="output">Output</label>
<textarea name="Output area" id="output" cols="30" rows="4"></textarea>
</div>
</div>
<script src="index.js"></script>
</body>
</html>