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
|
<?/*
+-------------------------------------------------------------------------+
| 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/ |
+-------------------------------------------------------------------------+
*/?>
<? $current_path = dirname(__FILE__);
include ("$current_path/config.php"); ?>
<html>
<head>
<title><?print $conf_realm_name;?> - Access Denied</title>
<link href="<?print "$conf_web_path/..";?>/css/main.css" rel="stylesheet">
</head>
<body>
<table align="center">
<tr>
<td colspan="2"><img src="<?print "$conf_web_path/..";?>/images/deny.gif" border="0" alt=""></td>
</tr>
<tr height="10"></tr>
<tr>
<td colspan="2">You are not permitted to access this section of <?print $conf_realm_name;?>.
If you feel that you need access to this particular section, please contact the webmaster.</td>
</tr>
</table>
</body>
</html>
|