-
Notifications
You must be signed in to change notification settings - Fork 21
/
popup.html
119 lines (112 loc) · 3.7 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
<!--
/* ***** 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 ***** */
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="lib/jquery-ui-1.8.17.custom.css"/>
<style>
* { font-family: Arial; font-size: 12px; }
</style>
<script type="text/javascript" src="lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="lib/tld.min.js"></script>
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="lib/jquery-ui-1.8.17.custom.min.js"></script>
<style>
html {
height: 0;
}
body {
height: 0;
width: 270px;
padding: 3px;
}
.right {
float: right;
}
label.field {
text-align: right;
float: left;
width: 60px;
padding-right: 6px;
}
select {
width: 188px;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<div>
<div id="compatmodeheader"></div>
<div id="compatmode"></div>
<p><label class="field">Site Tag:</label> <input style="width: 134px;" type="text" id="tag" value="" /> <input type="button" value="Bump" id="bump" /></p>
<p><label class="field">Password Length:</label>
<select id="length">
<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="field">Password Strength:</label>
<select id="strength">
<option value="2">Alphanumeric+Special</option>
<option value="1">Alphanumeric</option>
<option value="0">Numeric</option>
</select>
</p>
<p>
<a href="javascript:void(0)" id="portablePage" title="passhashplus.html">Portable HTML Page</a>
<a class="right" href="#" title="Extension options" id="link-options">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>