-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
78 lines (78 loc) · 4.09 KB
/
options.html
File metadata and controls
78 lines (78 loc) · 4.09 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
<html>
<head>
<title>Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div id="main-content">
<div id="navbar-container">
<img src="app.svg" width="80" height="80">
<a class="donate-button" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PJ97FHSFUCHJ4">
<img src="https://www.paypalobjects.com/en_AU/i/btn/btn_donate_LG.gif" alt="Donate to support development and maintenance of this extension" title="Donate to support development and maintenance of this extension">
</a>
</div>
<div id="mainview">
<div id="mainview-content">
<div id="page-container">
<div id="personal-page" class="page">
<h1>Settings</h1>
<div class="displaytable">
<section>
<h3>Desktop Notifications</h3>
<div>
<div>
<span>
Would you like to receive desktop notifications?
</span>
</div>
<div>
<div class="radio">
<label>
<input type="radio" name="options__enable_desktop_notifications" value="1" checked>
<span>Yes</span>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="options__enable_desktop_notifications" value="0">
<span>No</span>
</label>
</div>
</div>
</div>
</section>
<section>
<h3>Notification sound</h3>
<div>
<div>
<span>
Play a notification sound when you receive new mail?
</span>
</div>
<div>
<div class="radio">
<label>
<input type="radio" name="options__enable_notification_sound" value="1">
<span>Yes</span>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="options__enable_notification_sound" value="0" checked>
<span>No</span>
</label>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="lib/yui.js"></script>
<script src="base-notifier.js"></script>
<script src="options.js"></script>
</html>