forked from ericwoodruff/passwordhasherplus
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpopup.html
129 lines (127 loc) · 5.36 KB
/
popup.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<html>
<meta charset="utf-8">
<!--
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Password Hasher Plus
*
* The Initial Developer of the Original Code is Eric Woodruff.
* Portions created by the Initial Developer are Copyright (C) 2010
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): (none)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
-->
<head>
<script type="text/javascript" src="lib/tld.js"></script>
<script type="text/javascript" src="lib/sha1.js"></script>
<script type="text/javascript" src="lib/passhashcommon.js"></script>
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="storagearea.js"></script>
<link rel="stylesheet" href="ui.css"/>
<link rel="stylesheet" href="popup.css"/>
</head>
<body>
<form id="hasher">
<div id="compatmodeheader"></div>
<p class="browser-style">
<label class="browser-style field" for="tag">Site Tag:</label>
<input type="text" id="tag" value="" />
<button type="button" class="browser-style" id="bump">Bump</button>
</p>
<p class="browser-style" style="position:relative">
<label class="browser-style field" for="masterpw">Master password:</label>
<input type="password" id="masterpw" value="" autofocus tabindex="1"></input>
<button type="button" class="browser-style unmask" id="unmask-masterpw" title="Mask/unmask master password">a</button>
<span id="master-hint">XX</span>
</p>
<p class="browser-style" style="position:relative">
<label class="browser-style field" for="hashword">Hash word:</label>
<input type="password" id="hashword" value="" readonly/>
<button type="button" class="browser-style unmask" id="unmask-hashword" title="Mask/unmask hash word">a</button>
<span id="hash-hint">XX</span>
</p>
<div class="buttonrow">
<button type="button" class="browser-style" id="cancel" title="Cancel">Cancel</button>
<button class="browser-style" id="submit" title="Submit">OK</button>
</div>
</form>
<details>
<summary>Page Options</summary>
<div id="#page-options">
<p><label class="browser-style field">Password Length:</label>
<select id="length" class="browser-style">
<option value="2">2</option>
<option value="4">4</option>
<option value="6">6</option>
<option value="8">8</option>
<option value="10">10</option>
<option value="12">12</option>
<option value="14">14</option>
<option value="16">16</option>
<option value="18">18</option>
<option value="20">20</option>
<option value="22">22</option>
<option value="24">24</option>
<option value="26">26</option>
</select>
</p>
<p><label class="browser-style field">Password Strength:</label>
<select class="browser-style" id="strength">
<option value="2">Alphanumeric+Special</option>
<option value="1">Alphanumeric</option>
<option value="0">Numeric</option>
<option value="-1">Custom</option>
</select>
</p>
<p class="browser-style">
<div id="strength-requirements" class="form-group">
<ul>
<h2>Requirements</h2>
<li class="browser-style"><input type="checkbox" id="d" checked="true" value="d"/><label for="d">At least one digit</label></li>
<li class="browser-style"><input type="checkbox" id="p" checked="true" value="p"/><label for="p">At least on punctuation character</label></li>
<li class="browser-style"><input type="checkbox" id="m" checked="true" value="m"/><label for="m">Both upper- and lower-case letters</label></li>
<h2>Restrictions</h2>
<li class="browser-style"><input type="checkbox" id="r" value="r"/><label for="r">No special characters</label></li>
</ul>
</div>
</p>
</div>
</details>
<div id="global-options">
<p>
<a class="browser-style" href="#" id="portablePage" title="passhashplus.html">Portable HTML Page</a>
<a class="browser-style right" href="#" title="Extension options"
id="link-options">Global options</a>
</p>
<div id="syncneeded" class="hidden">
<p>The site seed for this site does not match your global seed value. To update it, change your site password and update the site options.</p>
</div>
</div>
</body>
<script type="text/javascript" src="popup.js"></script>
</html>