-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
98 lines (80 loc) · 3.1 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
<!DOCTYPE html>
<html>
<head>
<title>Extension Options</title>
<style>
#holder {padding: 5px; }
#status {display:none;}
</style>
<link rel="stylesheet" href="bulma.min.css"/>
</head>
<body>
<nav id="holder" class="panel is-marginless">
<p class="panel-heading" id="optionsSectionHeader">
Anonymous Email Options
</p>
<div class="panel-block">
<div class="field">
<label for="service" class="label" id="optionsServiceSelectionHeader">Anonymous Email Service</label>
<div class="control is-expanded">
<div class="is-fullwidth">
<select id="service"></select>
</div>
<div class="is-fullwidth">
<label class="help" class="checkbox">
<input type="checkbox" id="onlyShowHttps">
<span id="optionsServiceSelectionHttpsFilter">
Only shows sites which support HTTPS
</span>
</label>
</div>
<p class="help" id="optionsServiceSelectionHelp">Select the anonymous email service you would like to use.</p>
</div>
</div>
</div>
<div class="panel-block">
<div class="field ">
<label for="defaultEmail" class="label" id="optionsDefaultEmailHeader">Default Email</label>
<div class="field has-addons">
<p class="control">
<input id="defaultEmail" class="input" type="text" placeholder="Just name - e.g., 'john_smith'">
</p>
<p class="control">
<a id="serviceDomain" class="button is-static">
@domain.com
</a>
</p>
</div>
<p class="help" id="optionsDefaultEmailHelp">Enter the name to use, do not include @domain, it will be added automatically.</p>
</div>
</div>
<div class="panel-block" id="status">
<article class="message is-success">
<div class="message-header" id="optionsSavedHeader">
<p>Settings Saved</p>
</div>
<div class="message-body" id="optionsSavedMessage">
You may need to reload/refresh your tabs.
</div>
</article>
</div>
<div class="panel-block">
<button id="optionsSaveButtonText" class="button is-link is-outlined is-fullwidth">
Save Settings
</button>
</div>
<div class="panel"></div>
<div class="panel">
<div class="tabs is-centered has-text-centered is-fullwidth">
<ul>
<li><a id="optionsDonateLinkText" href="https://github.com/erichgoldman/disposable-email-helper#donate-and-support">>Donate $2.22</a></li>
<li><a id="optionsHelpLinkText" href="https://github.com/erichgoldman/disposable-email-helper/wiki">Help & FAQs</a></li>
</ul>
</div>
</div>
</nav>
<script src="options.js"></script>
<script src="services.js"></script>
</body>
</html>