-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpopup.html
More file actions
66 lines (66 loc) · 2.55 KB
/
popup.html
File metadata and controls
66 lines (66 loc) · 2.55 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
<html>
<head>
<!-- Theme specific CSS files are loaded later by the ThemeManager -->
<title>Chromix</title>
<link rel="stylesheet" type="text/css" href="css/footable/footable-0.1.css" />
<link rel="stylesheet" type="text/css" href="css/footable/footable.sortable-0.1.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/date.js"></script>
<script type="text/javascript" src="js/zabbix-api.js"></script>
<script type="text/javascript" src="js/des.js"></script>
<script type="text/javascript" src="js/jquery.dataTables.js"></script>
<script type="text/javascript" async="" src="js/focus.js"></script>
<script type="text/javascript" src="js/footable/footable-0.1.js"></script>
<script type="text/javascript" src="js/footable/footable.filter.js"></script>
<script type="text/javascript" src="js/footable/footable.sortable.js"></script>
<script type="text/javascript" src="js/init.js"></script>
<script type="text/javascript" src="js/jquery.lightbox_me.js"></script>
</head>
<body>
<div id="head">
<div align="right">
<a href="#" id="add" tabindex="1">Add Zabbix</a>
</div>
<div id="message" style="display:none" ></div>
<div id="error" style="display:none"></div>
<div id="login" style="display:none">
<a href=# id="close">close</a>
<form>
<table id="loginform">
<tr>
<td align="right">URL:</td>
</tr>
<tr>
<td><input type="text" id="url" placeholder="hostname/zabbix" tabindex="2"></td>
<td>SSL?<input type="checkbox" id="ssl"></td>
</tr>
<tr>
<td align="right">ID:</td>
</tr>
<tr>
<td><input type="text" id="username" placeholder="admin" tabindex="3"></td>
</tr>
<tr>
<td align="right">Password:</td>
</tr>
<tr>
<td><input type="password" id="password" tabindex="4"></td>
</tr>
<tr>
<td></td>
<td align="right"><div id="button"><a href="#" tabindex="5">login</a></div></td>
</tr>
</table>
</form>
</div>
</div>
<div id="bar">
<div id="select"></div>
<div id="search">
<input id="filter" type="text" placeholder="Search">
</div>
</div>
<div id="datatable"></div>
</body>
</html>