To establish a working HTML login page on your web site, there are a number of components that will be needed. Please read the information given below on how to set up a login form.
<form action="http://www.yoursite.com/path/to/adpass.pl" method="post">
This tag opens the form and associates it with adpass.pl.
<input type="text" name="username">
Form field into which a member's username is inputted.
<input type="password" name="password">
Form field into which a member's password is inputted.
<input type="checkbox" name="usingie" value="yes">
Form checkbox which should be checked by all users using the Internet Explorer web browser. For more information on why this is required, please see the article entitled "Microsoft's Internet Explorer Security Patch".
<input type="hidden" name="action" value="admit">
Hidden form action tag which indicates to the program what the user is trying to accomplish. In this case, he/she is trying to log into the system.
</form>
Closes the form.
Please note that all aspects of style and size on the above tags can be altered freely as long as the type and name remain intact.