-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
252 lines (233 loc) · 5.34 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<html>
<head>
<title>FormFiller Configuration Page</title>
<meta name="Author" content="Kacper Walanus" />
<style type="text/css">
body {
margin: 0;
padding: 0;
font-family: arial;
font-size: 12px;
}
h2 {
font-weight: normal;
}
.container {
margin-left: auto;
margin-right: auto;
width: 70%;
}
.bar {
padding-top: 50px;
}
.bar1 {
width: 26%;
float: left;
background-color: #eee;
padding-left: 30px;
padding-right: 15px;
border-left: 1px solid #222;
border-right: 1px solid #222;
border-bottom: 1px solid #222;
}
.bar1 .element {
margin-bottom: 5px;
padding: 5px;
}
.bar2 {
width: 60%;
float: left;
padding-left: 30px;
padding-right: 15px;
border-bottom: 1px solid #222;
border-right: 1px solid #222;
}
.formContainer h2 {
color: #0036C6;
font-size: inherit;
text-transform: uppercase;
padding: 0;
margin: 0;
margin-bottom: 5px;
text-align: center;
}
.formContainer {
text-align: left;
width: 400px;
}
.typeContainer {
margin-top: 2px;
margin-bottom: 40px;
text-align: right;
}
.moreLessSpan {
position: relative;
top: -22px;
left: 130px;
color: #999;
}
.typeContainer a {
text-decoration: none;
padding: 0px 5px;
}
.inputContainer {
width: 540px;
text-align: left;
}
.inputContainer .label {
width: 90px;
display: table-cell;
font-weight: bold;
text-align: right;
padding-right: 10px;
}
.inputContainer span {
width: 300px;
display: table-cell;
text-align: left;
}
.welcome {
padding: 5px;
font-weight: bold;
background-color: #222;
color: #ffb400;
font-size: large;
text-align: center;
text-shadow: red 0.1em 0.1em 0.2em;
position: fixed;
width: 100%;
z-index: 100;
}
.logo {
position: fixed;
right: 0px;
top: 0px;
}
.menu {
text-align: justify;
margin-bottom: 20px;
}
.popup {
position: fixed;
z-index: 101;
background-color: white;
background-color: #7b8;
text-shadow: black 0.1em 0.1em 0.2em;
font-weight: bold;
color: white;
padding: 7px;
border: 2px solid green;
text-align: center;
margin-left: auto;
margin-right: auto;
width: 200px;
}
.submit {
margin-top: 40px;
text-align: center;
}
.showPassword .description {
padding: 7px;
background-color: #ccc;
border: 1px solid black;
position: absolute;
left: 320px;
width: 200px;
}
.showPassword .description .example {
font-family: arial;
font-size: 11px;
background-color: white;
color: black;
opacity: 0.7;
border: 1px solid black;
padding: 3px;
}
.changeLog ul {
margin: 0px;
padding: 0px;
}
.changeLog ul li {
font-weight: bold;
list-style-type: none;
padding: 0px 0px 8px 0px;
}
.changeLog ul li ul li {
list-style-position: inside;
font-weight: normal;
list-style-image: url(img/logo12x12.png);
padding-top: 5px;
padding-left: 15px;
}
.smaller {
font-size: smaller;
}
</style>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="tea.js"></script>
<script type="text/javascript" src="constants.js"></script>
<script type="text/javascript" src="functions.js"></script>
<script type="text/javascript" src="utils.js"></script>
<script type="text/javascript" src="options.js"></script>
<script type="text/javascript" src="google_analytics/page.js"></script>
</head>
<body>
<div class="welcome">
<img class="logo" alt="logo" src="img/logo128x128.png" />
FormFiller Configuration Page
</div>
<div class="container">
<div class="bar1 bar">
<div class="menu">
<h2>Options</h2>
<div>
<div class="element showPassword">
<input type="checkbox" /> Show the first and the last char from your password.
<span class="description" style="display: none">Example: <span class="example">*a*******Z (dbl click to set)</span></span>
</div>
<div class="element autoFill">
<input type="checkbox" /> Fill fields automatically (no dbl click needed).
</div>
<div class="element createCustomType">
<button>Create Your own type</button>
</div>
<div class="element synchronize">
<button>Synchronize your data</button>
</div>
</div>
</div>
<hr />
<div class="changelog">
<h2>Change log</h2>
<ul>
<li>
1.1.0
<ul>
<li>
Form Filler data synchronization between Chrome Browsers.<br />
<span class="smaller">Note: passwords are never synchronized for security reasons.</span>
</li>
<li>Reduced memory usage (~35%).</li>
</ul>
</li>
<li>
1.0.0
<ul>
<li>First stable version.</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="bar2 bar">
<div class="formContainer">
<form action="" method="post">
<div class="innerForm">
<div class="inputs"></div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>