- 掃描 ID:
- 57446a4c-c801-47ff-9ceb-0a4b89cc22d2已完成
- 已提交的 URL:
- https://juanri.online/
- 報告完成時間:
連結 · 找到 0 個
從頁面中識別的傳出連結
JavaScript 變數 · 找到 4 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
showToast | function |
主控台記錄訊息 · 找到 1 條
記錄到 Web 主控台的訊息
類型 | 類別 | 記錄 |
---|---|---|
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>