View Full Version : Password Box!!??


natex2
12-02-2005, 02:55 AM
I wanted to know who to create a password box on a website so that when people enter the correct password they are redirected to a different site. By the way I use freewebs.com if that makes any difference.

pb&j
12-02-2005, 03:00 AM
http://www.bravenet.com
^ password gate

or you can try looking through here...
http://www.hotscripts.com

or you can do a search in the javascript or advanced forum areas.

harmor
12-02-2005, 03:05 AM
Place this in the head tags

<script>
var ans="enter"
var pass=prompt("What is the password")
if(pass == ans)
{
window.location="http://your_site_here"
}
else
{
alert("Wrong Password");
}
</script>

The password is "enter"
You can change this by editing the word "enter" in this statement
var ans="enter"

Edit the link in this statement
window.location="http://your_site_here"

natex2
12-02-2005, 03:07 AM
thanks!!