File: noauth.php

package info (click to toggle)
cacti 0.6.7-2.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,000 kB
  • ctags: 1,120
  • sloc: php: 5,059; sql: 922; sh: 302; perl: 81; makefile: 56
file content (31 lines) | stat: -rw-r--r-- 1,361 bytes parent folder | download
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>