Authorizer 1.0  (c)2001 BD
--------------------------

Authorizer is a simple PHP authorization script to password protect your pages.
It features a simple to use administrator to add and edit your users.
In the administrator you can set the users password and access levels.
Access levels can be used to allow some users access to more pages than others.
To protect a page include the following on top of the page:

<?php 
	include "auth.inc.php";
	verifyAccess(0);
?>

This bit of code includes the authorization scripts and then checks if the user
accessing the page has logged in before and if the users access level is right.
Access is granted to all users of the access level used in the call to
verifyAccess(level) or of a lower level.
e.g. verifyAccess(10) allows access to all users of level 10 and below.
If the user isn't logged in then a login form is shown.
A sample login is provided, but you can customize it by editing the file
auth_login.inc.html.

NOTE: The administrator script is only accessible of users of level 0, so if you add
new users to this level they all will be able to administer the users.

The default login for the administrator is:
	username : admin
	password : admin

You should change this password as soon as possible using the admin.php script.
