-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
138 lines (119 loc) · 4.74 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
<!DOCTYPE html>
<html>
<head>
<title>Leakuidator+</title>
<style type="text/css" media="screen">
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
padding: 20px;
}
td {
font-size: 13px;
vertical-align: top;
text-align: left;
}
p {
margin-top: 0.5em;
}
button {
white-space: pre;
}
</style>
</head>
<body>
<div>
<div style="width: 600px; margin: 0 auto; background: #fff; color: #000;">
<table>
<tr>
<td style="padding-left: 100px; padding-right: 100px; padding-bottom: 20px; vertical-align: middle;">
<img src="../icons/icon.png" height="100" width="100">
</td>
<td>
<h1 style="font-weight: 700; font-size: 24px; color: #000000;">
<span style="color: blue;">Leakuidator+</span>
</h1>
</td>
</tr>
</table>
<div id="tabs">
<div id="tab-#tab-options">
<p>
<span style="font-weight: 700; font-size: 14px; color: #2e2e2e;">Protection Mode:</span>
</p>
<div id="selectmode" class="mode">
<tr>
<td>
<select id="modeOption">
<option>Relaxed</option>
<option>Exact</option>
</select>
</td>
<td>
<button id="saveModeButton" style="margin-left: 10px;"><span>save</span></button>
</td>
<td>
<span id='status'></span>
</td>
</tr>
</div>
</br>
</br>
</div>
<div id="tab-excludelist">
<p style="font-weight: 700; font-size: 14px; color: #2e2e2e;">Exclude List:</p>
<form id="excludelistForm" action="#">
<table>
<tr>
<td style="max-width: 100%">
<input type="text" value="" placeholder="source host" id="newExcludeSourceHost" style="width: 100%;margin: 0px 0px 8px 0px;">
<input type="text" value="" placeholder="target host" id="newExcludetargetHost" style="width: 100%;margin: 0px 0px 8px 0px;">
</td>
<td>
<button class="addButton" id="addToExcludeMap" type="submit" style="margin-left: 10px;"><span>add</span></button>
</td>
</tr>
<tr>
<td>
<select id="excludedMappingsBox" size="10" style="width: 500px; background: white;"></select>
</td>
<td >
<button id="removeFromExcludeMap" style="margin-left: 10px;" class="removeButton"><span>remove selected</span></button>
</td>
</tr>
</table>
</form>
</br>
</br>
</div>
<div id="tab-ignorelist">
<p style="font-weight: 700; font-size: 14px; color: #2e2e2e;">Ignore List:</p>
<form id="ignorelistForm" action="#">
<table>
<tr>
<td style="max-width: 100%">
<input type="text" value="" placeholder="source host" id="newIgnoreSourceHost" style="width: 100%;margin: 0px 0px 8px 0px;">
<input type="text" value="" placeholder="target host" id="newIgnoretargetHost" style="width: 100%;margin: 0px 0px 8px 0px;">
</td>
<td>
<button class="addButton" id="addToIgnoreMap" type="submit" style="margin-left: 10px;"><span>add</span></button>
</td>
</tr>
<tr>
<td>
<select id="ignoredMappingsBox" size="10" style="width: 500px; background: white;"></select>
</td>
<td>
<button id="removeFromIgnoreMap" style="margin-left: 10px;" class="removeButton"><span>remove selected</span></button>
</td>
</tr>
</table>
</form>
<!--<p id="filter-must-follow-syntax" class="i18n_filter_must_follow_syntax Opt2TabingText"></p>-->
</div>
</div>
<script src="ext/options.js"></script>
</div>
</div>
</body>
</html>