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
|
<?/*
+-------------------------------------------------------------------------+
| raXnet Authentication Scripts |
+-------------------------------------------------------------------------+
| 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/ |
+-------------------------------------------------------------------------+
*/?>
<? /* Some basic settings to the raXnet Authentication scripts */
include (dirname(__FILE__) . "/../../include/config.php");
/* general options */
$conf_cookiename = "cactilogin";
$conf_drop_down_user_list = false;
$conf_realm_name = "cacti rrdtool frontend";
$conf_web_path = $config["path_webcacti"]["value"] . "/auth/include";
/* auth default colors */
$color_header = "001855";
$color_header_text = "FFFFFF";
$color_back_log = "EEEEEE";
/* colors */
$color_dark_bar = "001855";
$color_panel = "E5E5E5";
$color_light = "F5F5F5";
?>
|