Начало
Защита с помощью паролей
Три Попытки
Если Вы хотите 'защитить' место и не имеете доступа CGI, Вы можете попробовать этот JavaScript. Посетители получают три попытки ввести правильный пароль тогда, им отказывают во въезде.
JavaScript Password Protection: Три Попытки
<!-- 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> <!-- Script Size: 1.10 KB -->