-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.11 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
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Ceasar Cypher</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<main>
<div class="container">
<h1>The Ceasar Cypher</h1>
<div class="card-content">
<section class="input-elements">
<input required type="text" name="message" placeholder="Type your message here..." class="message-el" />
<input required type="number" name="shift" placeholder="shift" class="shift-el" />
</section>
</div>
<div class="buttons-wrapper">
<button class="btn-encrypt" onclick="getEncryptedMsg()">Encrypt</button>
<button class="btn-decrypt" onclick="decrypt()">Decrypt</button>
</div>
<section>
<p class="encrypted-el"></p>
<p class="decrypted-el"></p>
</section>
</div>
</main>
<script src="index.js"></script>
</body>
</html>