blob: 102ad09f8391b03bfed1f34f667335bf75b6d325 (
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
|
<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 id="headers">
<!-- The header area: A template of our header -->
<span class="header" id="header-template">Text</span>
</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>
|