I have made BCSSes (extra security) It is still in the testing and fixing stage but I have created and protected a site with it already. It uses AES encryption to protect your pagename, and SHA-1 hashing to protect your password. Your passwrd is also protected by having the "Admin ID". When hashing your password it uses your "Admin ID" as salt to add extra protection to your password. I won't give this out to everyone so you need to e-mail at bcss@rriven.com with the subject as "webpage". In a few short words explain to me why you need it. Mabye have a link to the site, and I will get back to you.
I have an example here
Workaround for error in BCSSes
BCSSes only lets you create one User, after that it never updates the info. No matter how many user it looks like this:
<tr><td>Username:</td><td><select name=memlist>
<option value='x'>
<option value='User1|f4265c697e0425cffc9fb3b906053ab0b154b74c|00b039e478a0f0ba619f2ff6814f2e90'>User1 </select></td></tr>
<tr><td>Password:</td><td><input type=password size=14 maxlength=15 name=pass></td></tr>
so copy all of the code to your webpage. Then make a new user and copy this part:
<option value='User2|a412373586a0c6897ee3cca8b22de59d616855a5|009dacfd9a29aa4930c9036930542d68'>User2
then add them together so they look like this:
<tr><td>Username:</td><td><select name=memlist>
<option value='x'>
<option value='User1|f4265c697e0425cffc9fb3b906053ab0b154b74c|00b039e478a0f0ba619f2ff6814f2e90'>User1
<option value='User2|a412373586a0c6897ee3cca8b22de59d616855a5|009dacfd9a29aa4930c9036930542d68'>User2
</select></td></tr>
<tr><td>Password:</td><td><input type=password size=14 maxlength=15 name=pass></td></tr>
repeat those steps untill all user have been made