-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
68 lines (57 loc) · 1.71 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
<html>
<head>
<title>Alerta Options</title>
</head>
<body>
<div>
<h2>Alerta Options</h2>
<p><h3>API URL</h3>
<input id="api_url" style="width:300px;" type="text" />
</p>
<p><h3>API Key</h3>
<input id="api_key" style="width:300px;" type="text" />
</p>
<p><h3>Dashboard URL</h3>
<input id="dashboard_url" style="width:300px;" type="text" />
</p>
<p><h3>Environment</h3>
<input type="checkbox" id="env_prod"/>
<label for="env_prod">Production</label>
<br/>
<input type="checkbox" id="env_infra"/>
<label for="env_infra">Infrastructure</label>
<br/>
<input type="checkbox" id="env_dev"/>
<label for="env_dev">Development</label>
</p>
<p><h3>Severity</h3>
<input type="checkbox" id="sev_critical"/>
<label for="sev_critical">Critical</label>
<br/>
<input type="checkbox" id="sev_major"/>
<label for="sev_major">Major</label>
<br/>
<input type="checkbox" id="sev_minor"/>
<label for="sev_minor">Minor</label>
<br/>
<input type="checkbox" id="sev_warning"/>
<label for="sev_warning">Warning</label>
<br/>
<input type="checkbox" id="sev_indeterminate"/>
<label for="sev_indeterminate">Indeterminate</label>
<br/>
<input type="checkbox" id="sev_inform"/>
<label for="sev_inform">Informational</label>
<br/>
<input type="checkbox" id="sev_debug"/>
<label for="sev_debug">Debug</label>
<br/>
<input type="checkbox" id="sev_auth"/>
<label for="sev_auth">Security</label>
</p>
</div>
<div id="status"></div>
<button id="save">Save</button>
</body>
<script src="options.js"></script>
</html>