Fill out the form below to generate a .htpasswd file entry
for a username and password. You can then copy the line below
into your .htpasswd file for use with .htaccess authentication
access control. If you do not have an .htpasswd file in your
home directory already, then you must create one.
Add this line to your .htpasswd file::
Place the following .htaccess file in the directory you would like to protect
<files .htaccess>
deny from all
</files>
AuthName Protected
AuthType basic
AuthUserFile /local/home/YOUR_LOGIN/.htpasswd
Require valid-user
|