blob: f60e1b12be99f8a5fcff2eabc78f689cc696105d (
plain)
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
|
<html>
<head>
<script language="javascript">
// Settings
var ENDPOINT = "/rrduiback/";
</script>
<title>Statistics Monitoring</title>
<link href="style.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<table id="main-table" cellspacing="0" cellpadding="0">
<tr id="top-row"><td>
<table border="0" width="100%">
<tr><td id="headers" width="60%">
<!-- The category area: A template of our header -->
<span class="header" id="header-template">Text</span>
</td>
<td align="right" id="logo">
Network Statistics
</td></tr>
</table>
</td></tr>
<tr id="main-row"><td colspan="2" id="main-cell">
<iframe id="main-frame" src="frame.html"
border="0" frameborder="0"></iframe>
</td></tr>
</table>
<script language="javascript" src="rrdui.js"></script>
</body>
</html>
|