-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecryptpage.html
42 lines (41 loc) · 1.38 KB
/
decryptpage.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
<!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" />
<title>Decrypt file</title>
<link rel="stylesheet" href="encryptcss.css" />
</head>
<body>
<a class="back"><img src="images/icons.svg" alt="back" /></a>
<section id="stage">
<section id="step1">
<section class="common if-decrypt">
<a class="button browse fill">Browse a file</a>
<input type="file" id="input-decrypt" />
</section>
</section>
<section id="step2">
<section class="common if-decrypt">
<div id="near-pass">Enter key here</div>
<input type="password" />
<a class="button process">Decrypt!</a>
<div id="note-pass">
Enter the pass phrase that was used to encrypt this file. It is not
possible to decrypt it without it.
</div>
</section>
</section>
<section id="step3">
<section class="common download">
<h2 id="dowload-ready">Your file is ready!</h2>
<a class="button download">Download</a>
</section>
</section>
</section>
</body>
<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="aes.js"></script>
<script src="decrypt.js"></script>
</html>