RE: Password On a Website
NEVER EVER use javascript for password protecting a webpage. The js code is run on the clients side, meaning all the code is sent to the user before its executed.
This means that they will easyly be able to see what the password is.
Either use .htaccess or php
|