-
Notifications
You must be signed in to change notification settings - Fork 1
/
preferences.html
36 lines (35 loc) · 1.23 KB
/
preferences.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
<!--- Copyright 2012 by Nick Simmonds, all rights reserved
Post Office icon used by permission from Amanda Slater via Creative Commons
Royal Mail icon used by permission from PL Chadwick via Creative Commons
--->
<!DOCTYPE html>
<head><title>Post Office Options page</title>
<style type="text/css">
#owaUrl {
width: 169px;
}
</style>
</head>
<body>
<script src="options.js">
</script>
<img src="bigicon.png" />
<p>Select the webmail providers you use:</p>
<input type="checkbox" id="gmail"/> Gmail<br />
<input type="checkbox" id="yahoo" /> Yahoo! mail<br />
<input type ="checkbox" id="live" /> Microsoft Live mail<br />
<input type="checkbox" id="owa" /> Outlook Web Access - https://<input type="text" id="owaUrl" value="Enter OWA address here" />/owa<br />
<input type="checkbox" id="three" /> Microsoft Office 365 <br />
<p>Select your primary webmail. This will be the default when the Post Office icon is toggled on.</p>
<select id="default">
<option value="g">Gmail</option>
<option value="y">Yahoo!</option>
<option value="l">Live</option>
<option value="o">OWA</option>
<option value="3">Office 365</option>
</select>
<p id="output"></p>
<br>
<button>Save</button>
</body>
</html>