https://rltcomputingnetworking.org/

Submitted URL:
https://rltcomputingnetworking.org/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Console log messages · 2 found

Messages logged to the web console

TypeCategoryLog
verbosedom
URL
https://rltcomputingnetworking.org/
Text
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o
errornetwork
URL
https://rltcomputingnetworking.org/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!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>