- ID de exploración:
- 9ba9684b-6941-4164-a28b-552ebf9bc37dFinalizado
- URL enviada:
- https://rltcomputingnetworking.org/
- 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: 2 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registrar |
---|---|---|
verbose | dom |
|
error | network |
|
HTML
El cuerpo HTML sin procesar de la página
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - RLT Computing Network</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #007B7F;
color: #FFFFFF;
}
.container {
max-width: 500px;
width: 100%;
padding: 30px;
background-color: #FFFFFF;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 8px;
text-align: center;
color: #007B7F;
}
.logo {
max-width: 120px;
margin-bottom: 20px;
}
h1, h3 {
color: #007B7F;
}
.error-message {
color: #D9534F;
margin-bottom: 15px;
}
input[type="email"],
input[type="password"] {
width: 95%;
padding: 12px;
margin: 12px 0;
border: 1px solid #007B7F;
border-radius: 4px;
font-size: 16px;
}
button[type="submit"] {
width: 100%;
padding: 12px;
background-color: #007B7F;
color: #FFFFFF;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
button[type="submit"]:hover {
background-color: #005F60;
}
.form-footer {
margin-top: 20px;
color: #007B7F;
font-size: 0.9em;
}
.form-footer a {
color: #005F60;
text-decoration: none;
}
.form-footer a:hover {
text-decoration: underline;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
align-items: center;
justify-content: center;
}
.modal-content {
background-color: #FFFFFF;
padding: 20px;
border-radius: 8px;
max-width: 400px;
width: 90%;
color: #007B7F;
text-align: center;
position: relative;
}
.modal h3 {
margin-top: 0;
color: #007B7F;
}
.modal .close-btn {
position: absolute;
top: 10px;
right: 10px;
color: #007B7F;
font-size: 24px;
cursor: pointer;
}
.confirmation-button {
background-color: #007B7F;
color: #FFF;
padding: 10px 20px;
border-radius: 4px;
text-decoration: none;
font-weight: bold;
display: inline-block;
}
.confirmation-button:hover {
background-color: #005F60;
}
</style>
</head>
<body>
<div class="container">
<img src="images/RLTLogo.png" alt="RLT Logo" class="logo">
<h1>RLT Computing Network</h1>
<h3>Teacher Login</h3>
<form method="post" action="index.php">
<input type="hidden" name="csrf_token" value="28e2f28033134afe3c4c74aecf5d6c186264786a0b31599be830032eb2f57dab">
<input type="email" name="email" placeholder="Email" required="">
<input type="password" name="password" placeholder="Password" required="">
<button type="submit" name="login">Login</button>
</form>
<div class="form-footer">
<p><a onclick="document.getElementById('forgotPasswordModal').style.display='flex'">Forgot Password?</a></p>
<p>Need an account? <a href="register.php">Register here</a></p>
</div>
</div>
<div id="forgotPasswordModal" class="modal">
<div class="modal-content">
<span class="close-btn" onclick="document.getElementById('forgotPasswordModal').style.display='none'">×</span>
<h3>Forgot Password</h3>
<form method="post" action="index.php">
<input type="email" name="forgot_email" placeholder="Enter your email address" required="">
<button type="submit" name="forgot_password">Reset Password</button>
</form>
</div>
</div>
<script>
</script>
</body></html>