-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaesar.html
39 lines (35 loc) · 1.16 KB
/
caesar.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Caesar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script language="javascript" src="caesar.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>Mã hóa Caesar</header>
<article>
<p>
<label>Plain text - Chuỗi chưa mã hóa:</label>
<br/>
<textarea id="plainText" cols="30"></textarea>
</p>
<p>
<label>Cipher text - Chuỗi sau khi mã hóa: </label>
<br/>
<textarea id="cipherText" cols="30"></textarea>
</p>
<p>
<label>Key K: </label>
<input title="Nhập một kí tự từ A-Z hoặc số từ 1-25" type="text" id="key" size="1" pattern="^[a-zA-Z0-9]{0,1}$">
</p>
<div id="errorMsg" class="error"></div>
<p>
<button type="button" onclick="btnEncrypt()">Encrypt</button>
<button type="button" onclick="btnDecrypt()">Decrypt</button>
</p>
</article>
<section id="resultBruteforce"></section>
</body>
</html>