- 제출된 URL:
- https://juanri.online/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 4개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
showToast | function |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
verbose | dom |
|
HTML
페이지의 원시 HTML 본문
<!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>