-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1 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
<html>
<head>
<title>The Caesar Cipher</title>
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<diV class="wrapper">
<h1>Caesar Ciphers: Encrypting and Decrypting</h1>
<div class="container">
<div class="key"><input type="number" placeholder="key" id="num"/></div>
<div id="error"></div>
<div class="encrypt">
<h3>Encryption</h3>
<input type="text" placeholder="Enter Plain Text" id="plain1"/>
<button type="button" id="encryptBtn">Encrypt</button>
<input type="text" placeholder="Cipher Text" id="cipher1"/>
</div>
<div class="decrypt">
<h3>Decryption</h3>
<input type="text" placeholder="Enter Cipher Text" id="cipher2"/>
<button type="button" id="decryptBtn">Decrypt</button>
<input type="text" placeholder="Plain Text" id="plain2"/>
</div>
</div>
<div class="key"><button type="button" id="reset">Reset</button></div>
</div>
</body>
<script type="text/javascript" src="caesar.js"></script>
</html>