forked from yogeshmundada/appu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
116 lines (105 loc) · 4.48 KB
/
options.html
File metadata and controls
116 lines (105 loc) · 4.48 KB
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
<!doctype html>
<html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="options.css">
<link rel="stylesheet" type="text/css" href="thirdparty/jquery-ui-1.9.1.custom/css/appuwarning/jquery-ui-1.9.1.custom.css">
<script src="thirdparty/jquery-ui-1.9.1.custom/js/jquery-1.8.2.js"></script>
<script src="thirdparty/jquery-ui-1.9.1.custom/js/jquery-ui-1.9.1.custom.js"></script>
<script src="options.js"></script>
<title>Appu: Options</title>
</head>
<body>
<header>
<h1>Appu Options</h1>
</header>
<div id="page-wrap">
<div id="appu-options">
<div id="accordion-dnt-site-list" class="appuwarning">
<h3> Disable Appu On These Sites</h3>
<fieldset id="fieldset-dnt-options">
<legend>Do Not Track sites</legend>
<p>Appu functionality will be disabled on following sites</p>
<div id="dnt-site-div">
<table id="dnt-site-list-table">
<colgroup class="dnt-sites"></colgroup>
<colgroup class="delete-this-entry"></colgroup>
<thead>
<tr>
<th id="header-dnt-sites"><span>Do Not Track Site</span></th>
<th id="header-dnt-delete-this-entry"><span></span></th>
</tr>
</thead>
<tbody id="dnt-site-list-table-body">
<tr>
</tr>
</tbody>
</table>
</div>
<input id="new-dnt-site" size=60><br/>
<button id="dnt-submit">Submit</button>
</fieldset>
</div>
<div id="accordion-dontbugme-site-list" class="appuwarning">
<h3> Do Not Bug Me Sites</h3>
<fieldset id="fieldset-dontbugme-options">
<legend>Do Not Bug Me Sites</legend>
<p>Appu will not generate any obstructive warnings on these sites.</p>
<div id="dontbugme-site-div">
<table id="dontbugme-site-list-table">
<colgroup class="dontbugme-sites"></colgroup>
<colgroup class="delete-this-entry"></colgroup>
<thead>
<tr>
<th id="header-dontbugme-sites"><span>Dont Bug Me Sites</span></th>
<th id="header-dontbugme-delete-this-entry"><span></span></th>
</tr>
</thead>
<tbody id="dontbugme-site-list-table-body">
<tr>
</tr>
</tbody>
</table>
</div>
<input id="new-dontbugme-site" size=60><br/>
<button id="dontbugme-submit">Submit</button>
</fieldset>
</div>
<div id="accordion-report-settings" class="appuwarning">
<h3> Reporting Settings</h3>
<fieldset id="fieldset-reporting-options">
<legend>Reporting Options</legend>
<input id="report-auto" type="radio" name="grp-reporting-options" value="auto">
<label id="label-report-auto" for="report-auto">Send report automatically</label><br/>
<input id="report-manual" type="radio" name="grp-reporting-options" value="manual">
<label id="label-report-manual" for="report-manual">Review report before sending</label><br/>
<input id="report-differential" type="radio" name="grp-reporting-options" value="differential">
<label id="label-report-differential" for="report-differential">Review report only if different from past reports</label><br/>
</fieldset>
</div>
<div id="accordion-monitor-icon-settings" class="appuwarning">
<h3> Per-page Appu Status Indication</h3>
<fieldset id="fieldset-cat-icon-options">
<legend>Do you want Appu to show a cat-icon on the left hand corner of each web page when
it is active?</legend>
<input id="cat-icon-display-on" type="radio" name="grp-cat-icon-options" value="monitor-icon-on">
<label id="label-cat-icon-display-on" for="cat-icon-display-on">Yes</label><br/>
<input id="cat-icon-display-off" type="radio" name="grp-cat-icon-options" value="monitor-icon-off">
<label id="label-cat-icon-display-off" for="cat-icon-display-off">No</label><br/>
</fieldset>
</div>
<div id="accordion-lottery-settings" class="appuwarning">
<h3> Appu Lottery Participation</h3>
<fieldset id="fieldset-lottery-options">
<legend>Do you want to participate in Appu lottery?</legend>
<input id="lottery-participation-on" type="radio" name="grp-lottery-options" value="lottery-on">
<label id="label-lottery-participation-on" for="lottery-participation-on">Yes</label><br/>
<input id="lottery-participation-off" type="radio" name="grp-lottery-options" value="lottery-off">
<label id="label-lottery-participation-off" for="lottery-participation-off">No</label><br/>
</fieldset>
</div>
</div>
</div>
</body>
</html>