🌸
ContraseΓ±a incorrecta
`; function checkPassword() { const input = document.getElementById('passwordInput').value; if (input === 'mmc1988mmc') { sessionStorage.setItem('mm_auth', 'ok'); showSite(); } else { document.getElementById('errorMsg').style.display = 'block'; document.getElementById('passwordInput').value = ''; document.getElementById('passwordInput').focus(); } } function showSite() { document.getElementById('loginBox').style.display = 'none'; const content = document.getElementById('siteContent'); content.style.display = 'block'; const iframe = document.createElement('iframe'); iframe.style.cssText = 'width:100%;height:100vh;border:none;'; iframe.srcdoc = SITE_CONTENT; content.appendChild(iframe); } window.addEventListener('load', () => { if (sessionStorage.getItem('mm_auth') === 'ok') showSite(); }); <\/script>