const passwordInput = document.getElementById('passwordInput');
const submitButton = document.getElementById('submitButton');
const correctPassword = 'eggydolee2025';
submitButton.addEventListener('click', () => {
const enteredPassword = passwordInput.value;
if (enteredPassword === correctPassword) {
window.location.href = 'https://chuofan.design/wmcfeature'; // Replace with the actual URL
} else {
alert('Incorrect password');
}
});