- ID de l'analyse :
- 9ba9684b-6941-4164-a28b-552ebf9bc37dTerminée
- URL soumise :
- https://rltcomputingnetworking.org/
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 3 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Messages de journal de console : 2 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
verbose | dom |
|
error | network |
|
HTML
Le corps HTML de la page en données brutes
<!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>