-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.06 KB
/
index.html
File metadata and controls
38 lines (32 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>seedback - encrypt</title>
<!-- Custom styles for this template -->
<link href="css/seedback.css" rel="stylesheet">
</head>
<body>
<div class="box">
<h1><a href="index.html">Seedback</a></h1>
<h4>A seed or backup tool QR image generating site for a paper printout.</h4>
<nav>
<ul>
<li><a href="index.html">encrypt</a></li>
<li><a href="decrypt.html">decrypt</a></li>
</ul>
</nav>
<input id='password' type='password' placeholder='encryption key is not set' size='35'>
<button onclick="setEncryption(this);return false;">Set</button>
</br>
<h4 id="encrypt">encrypt</h4>
<button type="button" name="button" onclick="addQRInput('dynamicInput')">Add QR textarea</button>
</br></br>
<div id="dynamicInput">
</div>
</div>
<script src="js/aes.js"></script>
<script src="js/global.js"></script>
<script src="js/qrious.min.js"></script>
</body>
</html>