-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 loc) · 2.35 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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, viewport-fit=cover, user-scalable=no"
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Encryption Variations" />
<meta property="og:title" content="Base64 and XOR web encryptors" />
<meta
property="og:description"
content="Base64 and XOR web encryptors implement web interface for encoding and decoding text using different encryption methods."
/>
<meta property="og:url" content="https://sergeiown.github.io/Encryption_Variations/" />
<meta property="og:image" content="https://sergeiown.github.io/Encryption_Variations/favicon.png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="Encryption Variations logo" />
<title>Encryption Variations</title>
<link rel="icon" href="favicon.png" type="image/png" />
<link rel="stylesheet" href="./style/index.css" />
</head>
<body>
<div class="container">
<h1>Encryption / Decryption</h1>
<h3>Cyrillic and Latin characters are supported</h3>
<textarea id="textInput" placeholder="Enter the text..." rows="8"></textarea>
<div class="controls">
<button id="clearButton">Clear</button>
<div class="options">
<select id="encryptionMethod">
<option value="xor">XOR</option>
<option value="base64">Base64</option>
</select>
</div>
<button id="copyButton">Copy</button>
</div>
<textarea id="output" placeholder="Result..." rows="8" readonly></textarea>
</div>
<noscript>
<div class="noscript-message">
<p>JavaScript is disabled in your browser.</p>
<p>Please enable JavaScript for this application to work properly.</p>
</div>
</noscript>
<script type="module" src="./script/main.js"></script>
</body>
</html>