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 69 70 71
|
<?/*
+-------------------------------------------------------------------------+
| Copyright (C) 2002 Ian Berry |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| cacti: the rrdtool frontend [php-auth, php-tree, php-form] |
+-------------------------------------------------------------------------+
| This code is currently maintained and debugged by Ian Berry, any |
| questions or comments regarding this code should be directed to: |
| - iberry@raxnet.net |
+-------------------------------------------------------------------------+
| - raXnet - http://www.raxnet.net/ |
+-------------------------------------------------------------------------+
*/?>
<? include_once ('auth/include/auth_functions.php');
include_once ('include/config.php'); ?>
<html>
<head>
<title>cacti</title>
<link href="css/main.css" rel="stylesheet">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3" bgcolor="#454E53">
<map name="tabs">
<area alt="Console" coords="7,5,87,35" href="index.php">
<area alt="Graphs" coords="166,5,241,32" href="graph_view.php?action=tree" shape="RECT">
<area alt="Documentation" coords="88,5,165,32" href="docs/MANUAL.htm">
</map>
<img src="images/top_tabs_main.gif" border="0" usemap="#tabs"><br>
</td>
</tr>
<tr>
<td colspan="3" bgcolor="#<?print $color_panel;?>">
<img src="images/transparent_line.gif" width="170" height="5" border="0"><br>
</td>
</tr>
<tr>
<td height="27" colspan="3" bgcolor="#<?print $color_panel;?>" background="images/top_banner.gif">
</td>
</tr>
<tr>
<td colspan="3" bgcolor="#<?print $color_panel;?>">
<img src="images/transparent_line.gif" width="170" height="5" border="0"><br>
</td>
</tr>
<tr height="5" bgcolor="#<?print $color_dark_outline;?>"><td colspan="3"><img src="images/transparent_line.gif" width="20" height="5" border="0"></td></tr>
<tr bgcolor="#<?print $color_light;?>" height="5">
<td width="1%" rowspan="2" align="center" valign="top">
<img src="images/transparent_line.gif" width="170" height="5" border="0"><br>
<?DrawMenu($HTTP_COOKIE_VARS["cactilogin"],1,false);?>
</td>
<td colspan="2" width="99%"></td>
</tr>
<tr>
<td height="300" bgcolor="#<?print $color_light;?>"></td>
<td valign="top" width="99%">
|