-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
35 lines (33 loc) · 939 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<title>Bartlby Errors</title>
<style>
body {
min-width:357px;
overflow-x:hidden;
}
img {
margin:5px;
border:2px solid black;
vertical-align:middle;
width:75px;
height:75px;
}
</style>
<link href="charisma-app.css" rel="stylesheet">
<link href="bootstrap-classic.css" rel="stylesheet">
<!-- JavaScript and HTML must be in separate files for security. -->
<script src="popup.js"></script>
</head>
<body>
<div>
Alerts Only: <input type=checkbox name=alerts_only id=alerts_only>
Downtimes: <input type=checkbox name=downtimes id=downtimes>
Hide Warnings: <input type=checkbox name=hide_warnings id=hide_warnings>
Hide Infos: <input type=checkbox name=hide_infos id=hide_infos>
</div>
<div id=status></div>
<div id=maindiv style='width: 500px'></div>
</body>
</html>