https://andromeda.excalibase.com/login/?next=/

Submitted URL:
https://andromeda.excalibase.com/Redirected
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 7 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
$function
jQueryfunction
uidEventnumber
bootstrapobject

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://andromeda.excalibase.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 (Not Found)

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">
    <title>Login</title>

    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
    
    <!-- Custom CSS -->
    <link rel="stylesheet" href="/static/css/main.css">

     
    <!-- Allows specific pages to add extra head elements -->
    
    
    <style>
      /* Custom alert width */
      .alert-container .alert {
        max-width: 500px; /* Set desired width, adjust as needed */
        margin: 0 auto;   /* Center the alert */
      }
    </style>
  </head>

  <body>
    <!-- Navbar or header can go here, depending on your design -->

    <div class="container mt-3">
      <!-- Message Display -->
      
    
      <!-- Main content block -->
      



    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login</title>

    <!-- Custom CSS -->
    <style>
        body, html {
            height: 100%;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #003547; /* Set the background color */
        }

        .form-container {
            width: 300px;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            background-color: white; /* Optional: to make the form background white */
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-container button {
            width: 100%;
            padding: 10px;
            background-color: #00A04E; /* Updated button color */
            color: white;
            border: none;
            border-radius: 5px;
        }

        .form-container p {
            margin-top: 10px;
        }

        input {
            padding: 10px;
            margin-left: 10px;
        }

        .alert {
            margin-bottom: 20px;
            padding: 10px;
            border: 1px solid transparent;
            border-radius: 5px;
        }

        .alert-danger {
            color: #721c24;
            background-color: #f8d7da;
            border-color: #f5c6cb;
        }

        .alert-success {
            color: #155724;
            background-color: #d4edda;
            border-color: #c3e6cb;
        }
    </style>


    <div class="form-container">
        <img src="/static/img/Cumberland_Council_logo2.png" alt="Logo" width="auto" height="125" class="d-inline-block align-text-top">
        <h3> Image Library </h3>

        <!-- Display messages -->
        

        <form method="post">
            <input type="hidden" name="csrfmiddlewaretoken" value="b5payRL0BoxcLtVsEhruNVRAhxpGOmlkm2Fv0vVIXUCKPDa7tzT7qAw9PHbKUiRy">
            <div class="form-group">
                <label for="id_username">Username:</label>
                <input type="text" name="username" autofocus="" autocapitalize="none" autocomplete="username" maxlength="150" required="" id="id_username">
            </div>
            <div class="form-group">
                <label for="id_password">Password:</label>
                <input type="password" name="password" autocomplete="current-password" required="" id="id_password">
            </div>
            <button type="submit">Login</button>
        </form>
        <p>Don't have an account? <a href="/access-request/">Request Access</a></p>
    </div>



    </div>

    <!-- Footer content -->
    
    <!-- Optional footer content can go here -->
    

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>

    <!-- Bootstrap Bundle JS (includes Popper.js) -->
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>

    <!-- JavaScript to auto-dismiss alerts after 3 seconds -->
    <script>
      setTimeout(function() {
        var alertElement = document.querySelector('.alert');
        if (alertElement) {
          var alert = new bootstrap.Alert(alertElement);
          alert.close();
        }
      }, 3000); // Auto-dismiss after 3 seconds
    </script>

    <!-- Additional page-specific JS scripts -->
    
    <!-- Optional JavaScript for specific pages -->
    
  




</body></html>