1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<html>
<head>
</head>
<body>
<h3><center>
<?php
// Can't do this; internationalization routines not yet loaded
// You have to provide your own translation below
// echo _("Access Denied<br>Please Contact Your System Administrator");
// TODO: this can probably be fixed; just load up the same things that
// get loaded in the login.php script, but this isn't high priority
// because the string in this file will probably be customized by
// the administrator anyway.
?>
Access Denied<br>Please Contact Your System Administrator
</center></h3>
</body>
</html>
|