-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 978 Bytes
/
index.html
File metadata and controls
38 lines (31 loc) · 978 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>Caesar Cipher Encryption/Decryption</title>
</head>
<body>
<div class="container">
<h1>Caesar Cipher Encryption/Decryption</h1>
<hr>
<label for="message">Enter The Message:</label>
<input id="message" type="text" >
<br>
<label for="shift">Enter The Shift Value:</label>
<input type="number" id="shift" min="1" value="3">
<br>
<center>
<button onclick="encrypt()">Encrypt</button>
<button onclick="decrypt()">Decrypt</button>
</center>
<div id="results">
<h2>Results:</h2>
<hr>
<p id="originalMessage">Original Message: </p>
<p id="shiftValue">Shift Value: </p>
<p id="encryptedMessage">Encrypted/Decrypted Message: </p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>