-
Notifications
You must be signed in to change notification settings - Fork 4
/
options.html
115 lines (99 loc) · 3.29 KB
/
options.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PasswordMaker options</title>
<link rel="stylesheet" href="css/options.css" media="screen">
</head>
<body>
<form id="options-form">
<p>
<label for="option-hash-algorithm">Hash algorithm:</label>
<select id="option-hash-algorithm"></select>
</p>
<p>
<label for="option-length">Generated passwords length:</label>
<input type="number" id="option-length" min="1" required>
</p>
<p>
<label for="option-charset">Character set:</label>
<select id="option-charset">
<option value="alpha">Alphas</option>
<option value="alphanum">Alphanumerics</option>
<option value="alphanumsym">Alphanumerics & symbols</option>
<option value="hex">Hexadecimal</option>
<option value="num">Numbers</option>
<option value="sym">Symbols</option>
<option value="custom">Custom...</option>
</select>
</p>
<p>
<label for="option-custom-charset">Custom character set:</label>
<input type="text" id="option-custom-charset">
</p>
<p>
<label for="option-url-components">URL components:</label>
<select id="option-url-components">
<option value="domain">Domain</option>
<option value="domain+subdomain">Domain & subdomain(s)</option>
</select>
</p>
<p>
<label for="option-password-visibility">Password visibility:</label>
<select id="option-password-visibility">
<option value="never">Never</option>
<option value="click">Show on click</option>
<option value="hover">Show on hover</option>
<option value="always">Always</option>
</select>
</p>
<p>
<label for="option-save-master-password">Save master password:</label>
<select id="option-save-master-password">
<option value="never">Never</option>
<option value="memory">In memory</option>
<option value="disk">On disk</option>
</select>
</p>
<p>
<label for="option-unicornpass">Show colors to make sure master password is correct:</label>
<input type="checkbox" id="option-unicornpass">
</p>
<p>
<label for="option-auto-fill-hidden-only">Only auto-fill password inputs:</label>
<input type="checkbox" id="option-auto-fill-hidden-only">
</p>
<p>
<label for="option-use-l33t">Use l33t:</label>
<select id="option-use-l33t">
<option value="off">Never</option>
<option value="before-hashing">Before hashing</option>
<option value="after-hashing">After hashing</option>
<option value="both">Before and after hashing</option>
</select>
</p>
<p>
<label for="option-l33t-level">L33t level:</label>
<input type="number" id="option-l33t-level" min="1" max="9">
</p>
<p>
<label for="option-modifier">Modifier:</label>
<input type="text" id="option-modifier">
</p>
<p>
<label for="option-prefix">Password prefix:</label>
<input type="text" id="option-prefix">
</p>
<p>
<label for="option-suffix">Password suffix:</label>
<input type="text" id="option-suffix">
</p>
<p class="options-form-footer">
<button type="submit">Save</button>
<span id="options-saved">Options saved</span>
</p>
</form>
<script type="text/javascript" src="js/values.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</body>
</html>