- ID de exploración:
- 57446a4c-c801-47ff-9ceb-0a4b89cc22d2Finalizado
- URL enviada:
- https://juanri.online/
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 4 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
showToast | function |
Mensajes de registro de la consola: 1 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registro |
---|---|---|
verbose | dom |
|
HTML
El cuerpo HTML sin procesar de la página
<!DOCTYPE html><html lang="es"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<style>
body {
background-color: #121212;
color: #ffffff;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.login-container {
background-color: #1e1e1e;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 300px;
text-align: center;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 4px;
background-color: #333;
color: #fff;
}
button {
width: 100%;
padding: 10px;
background-color: #6200ea;
color: #ffffff;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #3700b3;
}
.toast {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #ff3d00;
color: white;
padding: 10px 20px;
border-radius: 5px;
display: none;
z-index: 1000;
}
</style>
</head>
<body>
<div class="login-container">
<h2>Iniciar Sesión</h2>
<input type="text" placeholder="Usuario" required="">
<input type="password" placeholder="Contraseña" required="">
<button id="login-button">Ingresar</button>
</div>
<div class="toast" id="toast">Error desconocido en el servidor</div>
<script>
document.getElementById('login-button').addEventListener('click', function() {
showToast();
});
function showToast() {
const toast = document.getElementById('toast');
toast.style.display = 'block';
setTimeout(() => {
toast.style.display = 'none';
}, 3000);
}
</script>
</body></html>