-
Notifications
You must be signed in to change notification settings - Fork 3
/
options.html
102 lines (95 loc) · 3.89 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title id="title"></title>
<link type="text/css" rel="stylesheet" href="css/options.css" />
<link type="text/css" rel="stylesheet" href="css/jquery-confirm.min.css" />
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="js/jquery-confirm.min.js"></script>
<script type="text/javascript" src="js/default-preferences.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</head>
<body>
<h1 id="options"></h1>
<div class="tabs">
<ul class="tab-links">
<li class="active"><a href="#fieldsTab" id="fields"></a></li>
<li><a href="#symbolTab" id="general"></a></li>
<li><a href="#domainsTab" id="exceptions"></a></li>
<li><a href="#timerTab" id="passSecTimer"></a></li>
</ul>
<div class="tab-content">
<div id="fieldsTab" class="tab active">
<h3 id="fieldTypes"></h3>
<div class="tableWrapper">
<div class="checkbox">
<input id="pwField" type="checkbox">
<label for="pwField" id="passwordField"></label>
</div>
<div class="checkbox">
<input id="pyField" type="checkbox">
<label for="pyField" id="paymentField"></label>
</div>
<div class="checkbox">
<input id="perField" type="checkbox">
<label for="perField" id="personalField"></label>
</div>
<div class="checkbox">
<input id="sField" type="checkbox" class="float">
<label for="sField" id="searchField"></label>
</div>
</div>
</div>
<div id="symbolTab" class="tab">
<p id="changeIconText"></p>
<p id="iconHint"></p>
<div id="changeIconGroup">
<button id="changeIconButton" class="float"></button>
<img id="iconImg" alt="Icon">
</div>
</div>
<div id="domainsTab" class="tab">
<h4 id="trustedListText"></h4>
<div class="checkbox">
<input id="trustedListActivated" type="checkbox">
<label for="trustedListActivated" id="activateTrustedList"></label>
</div>
<br>
<button id="showTrustedDomains"></button>
<br><br>
<hr>
<h4 id="userListText"></h4>
<button id="editUserDefined"></button>
<br><br>
<hr>
<h4 id="userHttpListText"></h4>
<button id="editHttpUserDefined"></button>
<br><br>
<hr>
<h4 id="httpsRedirects"></h4>
<button id="showRedirects"></button>
<br><br>
</div>
<div id="timerTab" class="tab">
<div class="checkbox">
<input id="timerCheckbox" type="checkbox">
<label for="timerCheckbox" id="timerCheckboxText"></label>
</div>
<div class="clear">
<p id="timerAmountText" class="left"></p>
<input id="timerInput" class="left right" type="number" value="3" min="0" max="100">
<p id="seconds" class="last"></p>
</div>
</div>
</div>
<div id="optionButtons">
<button id="revertChanges"></button>
<button id="defaultSettings"></button>
</div>
<p id="statusSettings"></p>
<div class="lists">
</div>
</div>
</body>
</html>