Hello, I want users to only be able to access a certain area of the site if they have a password.
My code is this:
function redirect() {
var pass;
pass = prompt("Qual a palavra mágica?");
if (pass == "asdfouch") {
window.location.href = '[link]';
}
else {
alert("Ops, desculpe mas você ainda não tem acesso ou digitou o código errado :/");
}
}
If I type the wrong password, I get the alert, but nothing happens when I type the correct password.