-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
150 lines (133 loc) · 3.99 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<title>Set Password to Chrome</title>
</head>
<body>
<p style="color: red; font-size: 100%" id="topnote"><i> </i></p>
<p style="font-size: 150%">
<i><b> Change Password </b> (Default Password)</i>
</p>
<p
style="color: red; display: none; font-style: italic; font-size: 110%"
id="note"
></p>
<table>
<tr>
<td>Enter old password:</td>
<td><input type="password" id="old" /></td>
</tr>
<tr>
<td>Enter new password:</td>
<td><input type="password" id="new" /></td>
</tr>
</table>
<br />
<div id="status"></div>
<button id="save">Save</button>
<p style="font-size: 150%">
<i><b> ----------------------------------------------------</b></i>
</p>
<br /><br />
<p style="font-size: 150%">
<i><b> Dynamic Password</b> (optional)</i> click here to enable / disable
<input type="checkbox" id="dp" />
</p>
<div id="contents" style="display: none">
<p
style="color: red; display: none; font-style: italic; font-size: 110%"
id="note1"
></p>
<table>
<tr>
<td>Enter master password:</td>
<td><input type="password" id="old1" /></td>
</tr>
</table>
<p style="color: green; font-style: italic; font-size: 110%" id="note2">
Password will depend upon the current time..You can choose any follwing
option to generate password
<br /><br />For example let the current time be 09:45 then minutes : m1=
4 and m2= 5 PLEASE CHECK THE EQUATIONS PROPERLY BEFORE SETTING AND DONT
FORGET..
</p>
<table>
<tr>
<td><input type="radio" name="dyna" value="1" id="esh5" /></td>
<td>m1 + m2 (in this case, passowrd will be 9)</td>
</tr>
<tr>
<td><input type="radio" name="dyna" value="2" id="esh6" /></td>
<td>
m1 * m2 (in this case, passowrd will be 20)
</td>
</tr>
<tr>
<td><input type="radio" name="dyna" value="3" id="esh7" /></td>
<td>
|m1 - m2| (in this case, passowrd will be
|4-5|=1)
</td>
</tr>
<tr>
<td><input type="radio" name="dyna" value="4" id="esh1" /></td>
<td>
(m1 + m2)+
<input
type="text"
id="num1"
size="2"
disabled="disabled"
maxlength="3"
/>
(in this case, passowrd will be 9+your num)
</td>
</tr>
<tr>
<td><input type="radio" name="dyna" value="5" id="esh2" /></td>
<td>
(m1 * m2)+ <input
type="text"
id="num2"
size="2"
disabled="disabled"
maxlength="3"
/>
(in this case, passowrd will be 20+your num)
</td>
</tr>
<tr>
<td><input type="radio" name="dyna" value="6" id="esh3" /></td>
<td>
|m1 - m2|+ <input
type="text"
id="num3"
size="2"
disabled="disabled"
maxlength="3"
/>
(in this case, passowrd will be 1+your num)
</td>
</tr>
<tr>
<td><input type="radio" name="dyna" value="7" id="esh4" /></td>
<td>
(m1 + m2) *
<input
type="text"
id="num4"
size="2"
disabled="disabled"
maxlength="3"
/>
(in this case, passowrd will be 9*your num)
</td>
</tr>
</table>
<br />
<div id="status"></div>
<button id="save1">Save</button>
</div>
<script src="options.js"></script>
</body>
</html>