forked from urbashi123/Caesar-Cipher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.38 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
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<link href="sheets/style.css" rel="stylesheet" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<title></title>
</head>
<body>
<body style="background-color:lavender">
<div class ="header">
<h1><B><center>CAESAR CIPHER</center></B></h1>
</div>
<br>
<br>
<div class="container">
<div class="row">
<div class=" col-sm-6 col-sm-offset-3 encryptionDIV">
<label> - Message - </label>
<textarea class="form-control" type="text" id="input"> </textarea>
<br />
<br>
<label> - Key - </label>
<br />
<br>
<input class="form-control" type="number" min="0" max="25" value="3" tabindex="2" id="key">
<br />
<button id="encrypt" class="btn btn-success"> Encrypt </button>
<button id="decrypt" class="btn btn-success">Decrypt</button>
</div>
<div class="row">
<div class=" bs-callout-info col-sm-6 col-sm-offset-3 content">
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>