forked from SecUSo/PassSec-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
104 lines (97 loc) · 3.52 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
<!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.2.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="#tab1" id="general"></a></li>
<li><a href="#tab2" id="redirects"></a></li>
<li><a href="#tab3" id="exceptions"></a></li>
<li><a href="#tab4" id="fields"></a></li>
</ul>
<div class="tab-content">
<div id="tab1" class="tab active">
<h3 id="appearance"></h3>
<p id="appearanceSecure"></p>
<input id="secureInputType" type="text" value="***"></p>
<p id="appearanceNotSecure"></p>
<input id="notSecureInputType" type="text" value="***"></p>
<p id="changeIconText"></p>
<div id="changeIconGroup">
<button id="changeIconButton" class="float"></button>
<img id="iconImg" alt="Icon">
</div>
</div>
<div id="tab2" class="tab">
<h3 id="httpsRedirects"></h3>
<button id="showRedirects"></button>
<br><br>
<button id="clearRedirectionList"></button>
</div>
<div id="tab3" class="tab">
<h3 id="websiteExceptions"></h3>
<button id="showWebsiteExceptions"></button>
<br><br>
<button id="clearExceptionList"></button>
<!--
<br><br>
<button id="checkExceptions"></button>
<br><br>
<div class="checkbox">
<input id="checkAfter20Checkbox" type="checkbox">
<label for="checkAfter20Checkbox" id="checkAfter20"></label>
</div>
-->
</div>
<div id="tab4" class="tab">
<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>
<div id="optionButtons">
<button id="revertChanges"></button>
<button id="defaultSettings"></button>
</div>
<p id="statusSettings"></p>
<div class="lists">
<table id="redirectList">
<tr>
<th id="redirectListTitle"></th>
</tr>
</table>
<table id="exceptionList">
<tr>
<th id="exceptionListTitle"></th>
</tr>
</table>
</div>
</div>
</body>
</html>