-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.56 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
57
58
59
60
61
62
63
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>uniqpass</title>
<link rel="stylesheet" type="text/css" href="index.css">
<script src="base64js.min.js"></script>
<script src="index.js"></script>
</head>
<body>
<aside>
<a href="v2/">Go to newest version!</a>
</aside>
<section id="options">
<div id="secret" class="option">
<label for="secret-input">secret</label>
<input id="secret-input" type="password">
<div id="remember-secret">
<input id="remember-secret-input" type="checkbox" tabindex="1">
<label for="remember-secret-input">remember secret</label>
</div>
</div>
<div id="subject" class="option">
<label for="subject-input">subject</label>
<input id="subject-input" type="text" placeholder="example.org">
</div>
<div id="limit" class="option">
<label for="limit-input">limit</label>
<span>
<input id="limit-input" type="number" min="1" value="44">
<button id="reset-limit">⟲</button>
</span>
</div>
<div id="charset" class="option">
<span>
<input id="charset-lower-input" type="checkbox" checked>
<label for="charset-lower-input">lowercase letters</label>
</span>
<span>
<input id="charset-upper-input" type="checkbox" checked>
<label for="charset-upper-input">uppercase letters</label>
</span>
<span>
<input id="charset-number-input" type="checkbox" checked>
<label for="charset-number-input">numbers</label>
</span>
<span>
<input id="charset-symbol-input" type="checkbox" checked>
<label for="charset-symbol-input">symbols</label>
</span>
</div>
</section>
<section id="output">
<div id="password">
<label for="password-input">uniqpass</label>
<span>
<input id="password-input" type="text" readonly>
<button id="password-to-clipboard"><span>📋</span></button>
</span>
</div>
</section>
</body>
</html>