-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
78 lines (74 loc) · 2.69 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
<!DOCTYPE html>
<!--
Copyright (C) 2014 yuSing.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301 USA
-->
<html>
<head>
<title>ShowPassword Option</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<style>
body{
text-align: center;
}
table{
margin-left:auto;
margin-right:auto;
}
a.donate{
font-size:0.8em;
color:#555;
text-decoration: none;
}
a.donate:hover{
font-size:0.8em;
color:#000;
text-decoration:underline;
}
</style>
<script src="options.js"></script>
</head>
<body>
<h1 id="optionTitle">ShowPassword Option</h1>
<table style="text-align: left;">
<tr>
<td>
<label id="labelWhen">When to show password:</label>
</td>
<td>
<select id="selectBehave">
<option id="optMouseOver">Mouse over</option>
<option id="optDblClick">Double Click</option>
<option id="optFocus">On Focus</option>
<option id="optCtrl">Press Ctrl Key</option>
</select>
<div id="divWait" style="display: inline">
<label id="labelWait">Wait:</label>
<input id="inputWait" type="number" min="0" value="500" style="width: 50px;">ms
</div>
</td>
</tr>
<tr>
<td>
<label id="labelPreview">Preview Password field:</label>
</td>
<td>
<input id="passwordTest" type="password" size="25" value="Password" style="width: 100px;">
</td>
</tr>
</table>
<script src="showPassword.js"></script>
</body>
</html>