Here's a script which prompts the user, and gives them 3 chances to get it right.
Code:
<!-- THREE STEPS TO INSTALL THREE TRIES:
1. Put the first code into the HEAD of your HTML document
2. Change protectedpage.html to your protected page
3. Add the final code to the BODY of your HTML document -->
<!-- STEP ONE: Copy this code into the BODY of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function password() {
var testV = 1;
var pass1 = prompt('Please Enter Your Password','');
while (testV < 3) {
if (!pass1)
history.go(-1);
if (pass1 == "password") {
alert('You Got it Right!');
<!-- STEP TWO: Change protectedpage.html to your protected page -->
// Change the following URL to your protected filename
window.open('protectedpage.html');
break;
}
testV+=1;
var pass1 =
prompt('Access Denied - Password Incorrect, Please Try Again.','Password');
}
if (pass1!="password" & testV ==3)
history.go(-1);
return " ";
}
// End -->
</SCRIPT>
</head>
<!-- STEP THREE: Copy the last code into the BODY of your HTML document -->
<BODY>
<CENTER>
<FORM>
<input type="button" value="Enter Password Protected Area" onClick="password()">
</FORM>
</CENTER>
Copyright javascript.internet.com
Bookmarks