zNovabeast



zNardoragon


function promptPass() { var password = "Zunkz"; // 🚨 change your password here! var psw = prompt("Enter your Password"); if (psw === null) { window.open(window.history.back(), "_self"); } else if (psw !== password) { alert("Incorrect Password"); return promptPass(); } else if (psw === password) { // alert("Welcome!"); }; }