-
Notifications
You must be signed in to change notification settings - Fork 2
/
encrypt.html
48 lines (43 loc) · 2.9 KB
/
encrypt.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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preload" href="css/normalize.min.css" as="style">
<link rel="preload" href="css/main.css" as="style">
<link rel="preload" href="js/polyfill.js" as="script">
<link rel="preload" href="js/vendor/triplesec.min.js" as="script">
<link rel="preload" href="js/main.js" as="script">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body id="encrypt">
<div class="encrypt-form">
<label for="content-area">Content</label>
<textarea name="content-area"></textarea>
<div class="footer">
<div class="error-message"></div>
<div class="actions">
<input type="password" placeholder="Password">
<button type="button">Encrypt</button>
</div>
</div>
</div>
<div class="encrypted-container hide">
<div class="encrypted-content"></div>
<div class="footer">
<button type="button">Copy</button>
</div>
</div>
<a class="page-link" href="index.html">Go to decryption</a>
<div class="loading-container hide">
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="240px" height="30px" viewBox="0 0 128 16" xml:space="preserve"><path fill="#94c8ff" fill-opacity="0.42" d="M6.4,4.8A3.2,3.2,0,1,1,3.2,8,3.2,3.2,0,0,1,6.4,4.8Zm12.8,0A3.2,3.2,0,1,1,16,8,3.2,3.2,0,0,1,19.2,4.8ZM32,4.8A3.2,3.2,0,1,1,28.8,8,3.2,3.2,0,0,1,32,4.8Zm12.8,0A3.2,3.2,0,1,1,41.6,8,3.2,3.2,0,0,1,44.8,4.8Zm12.8,0A3.2,3.2,0,1,1,54.4,8,3.2,3.2,0,0,1,57.6,4.8Zm12.8,0A3.2,3.2,0,1,1,67.2,8,3.2,3.2,0,0,1,70.4,4.8Zm12.8,0A3.2,3.2,0,1,1,80,8,3.2,3.2,0,0,1,83.2,4.8ZM96,4.8A3.2,3.2,0,1,1,92.8,8,3.2,3.2,0,0,1,96,4.8Zm12.8,0A3.2,3.2,0,1,1,105.6,8,3.2,3.2,0,0,1,108.8,4.8Zm12.8,0A3.2,3.2,0,1,1,118.4,8,3.2,3.2,0,0,1,121.6,4.8Z" /><g><path fill="#007bff" fill-opacity="1" d="M-42.7,3.84A4.16,4.16,0,0,1-38.54,8a4.16,4.16,0,0,1-4.16,4.16A4.16,4.16,0,0,1-46.86,8,4.16,4.16,0,0,1-42.7,3.84Zm12.8-.64A4.8,4.8,0,0,1-25.1,8a4.8,4.8,0,0,1-4.8,4.8A4.8,4.8,0,0,1-34.7,8,4.8,4.8,0,0,1-29.9,3.2Zm12.8-.64A5.44,5.44,0,0,1-11.66,8a5.44,5.44,0,0,1-5.44,5.44A5.44,5.44,0,0,1-22.54,8,5.44,5.44,0,0,1-17.1,2.56Z" /><animateTransform attributeName="transform" type="translate" values="23 0;36 0;49 0;62 0;74.5 0;87.5 0;100 0;113 0;125.5 0;138.5 0;151.5 0;164.5 0;178 0" calcMode="discrete" dur="1170ms" repeatCount="indefinite" /></g></svg>
</div>
<script src="js/polyfill.js"></script>
<script src="js/vendor/triplesec.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>