Password Protected Page
function checkPassword() { const password = document.getElementById('password').value; const correctPassword = "yourPassword123"; // Replace with your actual password const message = document.getElementById('message'); if (password === correctPassword) { message.style.color = "green"; message.textContent = "Access Granted!"; window.location.href = "protected-content.html"; // Replace with the protected page URL } else { message.style.color = "red"; message.textContent = "Incorrect Password. Please try again."; } }