- スキャン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>