-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
84 lines (80 loc) · 3.7 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>Password Hasher NG</title>
<meta charset="utf-8">
<link rel="stylesheet" href="index.css"/>
<link rel="stylesheet" href="notyf.min.css"/>
<link rel="icon" type="image/png" href="logo_48.png" />
</head>
<body>
<form autocomplete="off">
<div class="row">
<div class="col">
<div class="row">
<label for="tag">Sitetag</label><input type="text" id="tag" value="" autofocus />
</div>
<div class="row">
<label for="key">Masterkey</label><input type="password" id="key" value="" /><div id="hint" class="hidden">$$</div>
</div>
<div class="row">
<label for="hash">Hashword</label><input type="text" id="hash" value="" readonly/>
</div>
</div>
<div class="col">
<div class="row">
<input type="button" value="Bump" id="bump" name="bump" />
</div>
<div class="row">
<input type="checkbox" id="unmask" class="hidden"><label id="unmasklabel" class="checkboxlabel hidden" for="unmask">Unmask</label>
</div>
<div class="row">
<input type="button" value="Options >>" id="options" />
</div>
</div>
</div>
<div id="settings" class="row hidden">
<div class="col">
<div class="form-group checkboxes requirements">
<h2>Requirements</h2>
<ul>
<li><input type="checkbox" id="d" checked="true" value="d"/><label for="d">At least one digit</label></li>
<li><input type="checkbox" id="p" checked="true" value="p"/><label for="p">At least one punctuation character</label></li>
<li><input type="checkbox" id="m" checked="true" value="m"/><label for="m">Both upper- and lower-case letters</label></li>
</ul>
</div>
<div class="form-group checkboxes restrictions">
<h2>Restrictions</h2>
<ul>
<li><input type="checkbox" id="r" value="r"/><label for="r">No special characters</label></li>
<li><input type="checkbox" id="g" value="g"/><label for="g">Digits only</label></li>
</ul>
</div>
</div>
<div class="col">
<div class="form-group radio size">
<h2>Size</h2>
<ul>
<li><input type="radio" name="size" id="size4" value="4"/><label for="size4">4</label>
<input type="radio" name="size" id="size16" value="16" checked="true"/><label for="size16">16</label></li>
<li><input type="radio" name="size" id="size6" value="6"/><label for="size6">6</label>
<input type="radio" name="size" id="size18" value="18"/><label for="size18">18</label></li>
<li><input type="radio" name="size" id="size8" value="8"/><label for="size8">8</label>
<input type="radio" name="size" id="size20" value="20"/><label for="size20">20</label></li>
<li><input type="radio" name="size" id="size10" value="10"/><label for="size10">10</label>
<input type="radio" name="size" id="size22" value="22"/><label for="size22">22</label></li>
<li><input type="radio" name="size" id="size12" value="12"/><label for="size12">12</label>
<input type="radio" name="size" id="size24" value="24"/><label for="size24">24</label></li>
<li><input type="radio" name="size" id="size14" value="14"/><label for="size14">14</label>
<input type="radio" name="size" id="size26" value="26"/><label for="size26">26</label></li>
</ul>
</div>
</div>
</div>
</form>
<script src="passhash-sha1.js"></script>
<script src="passhash-common.js"></script>
<script src="notyf.min.js"></script>
<script src="index.js"></script>
</body>
</html>