passport.aldautomotive.it Open in urlscan Pro
62.101.90.135  Public Scan

Submitted URL: https://ald.mobilitysolutions.it/
Effective URL: https://passport.aldautomotive.it/authenticationendpoint/login.do?client_id=x67J19kmSjJ6bl4QX96yeMIEXtMa&code_challenge=VXvx0N-pMR...
Submission: On October 04 via manual from US — Scanned from IT

Form analysis 2 forms found in the DOM

POST ../commonauth

<form class="ui large form" action="../commonauth" method="post" id="loginForm">
  <div class="field">
    <div class="ui fluid left icon input">
      <input type="text" id="username" value="" name="username" placeholder="Username" data-testid="login-page-username-input" required="">
      <i aria-hidden="true" class="user icon"></i>
    </div>
  </div>
  <div class="field">
    <div class="ui fluid left icon input addon-wrapper">
      <input type="password" id="password" name="password" value="" autocomplete="off" required="" placeholder="Password" data-testid="login-page-password-input" style="padding-right: 2.3em !important;">
      <i aria-hidden="true" class="lock icon"></i>
      <i id="passwordUnmaskIcon" class="eye icon mr-0" style="margin: 0 auto; right: 0; pointer-events: auto; cursor: pointer;"></i>
    </div>
  </div>
  <div class="buttons">
    <div class="field"> Dimenticato <a id="usernameRecoverLink" href="https://passport.aldautomotive.it/accountrecoveryendpoint/recoveraccountrouter.do?client_id=x67J19kmSjJ6bl4QX96yeMIEXtMa&amp;code_challenge=VXvx0N-pMRp-JJUwNsc1dGw5rPITIBUYLh_pJP1gFUM&amp;code_challenge_method=S256&amp;commonAuthCallerPath=%2Foauth2%2Fauthorize&amp;forceAuth=false&amp;nonce=b1ZpSW1VU1AwWHpUMHNtQlgyNElTUUtHTEpSQXFFYjZhTjM5cEJDOXdqb1lC&amp;passiveAuth=false&amp;redirect_uri=https%3A%2F%2Fald.mobilitysolutions.it%2F&amp;response_type=code&amp;scope=openid+profile&amp;state=b1ZpSW1VU1AwWHpUMHNtQlgyNElTUUtHTEpSQXFFYjZhTjM5cEJDOXdqb1lC&amp;tenantDomain=ald.it&amp;sessionDataKey=bc009b45-fe91-462c-82bd-5cf55703d6f9&amp;relyingParty=x67J19kmSjJ6bl4QX96yeMIEXtMa&amp;type=oidc&amp;sp=myAldFE&amp;isSaaSApp=false&amp;authenticators=BasicAuthenticator%3ALOCAL&amp;reqTenantDomain=ald.it&amp;isUsernameRecovery=true&amp;callback=https%3A%2F%2Fald.mobilitysolutions.it" data-testid="login-page-username-recovery-button">
                Username
            </a> o <a id="passwordRecoverLink" href="https://passport.aldautomotive.it/accountrecoveryendpoint/recoveraccountrouter.do?client_id=x67J19kmSjJ6bl4QX96yeMIEXtMa&amp;code_challenge=VXvx0N-pMRp-JJUwNsc1dGw5rPITIBUYLh_pJP1gFUM&amp;code_challenge_method=S256&amp;commonAuthCallerPath=%2Foauth2%2Fauthorize&amp;forceAuth=false&amp;nonce=b1ZpSW1VU1AwWHpUMHNtQlgyNElTUUtHTEpSQXFFYjZhTjM5cEJDOXdqb1lC&amp;passiveAuth=false&amp;redirect_uri=https%3A%2F%2Fald.mobilitysolutions.it%2F&amp;response_type=code&amp;scope=openid+profile&amp;state=b1ZpSW1VU1AwWHpUMHNtQlgyNElTUUtHTEpSQXFFYjZhTjM5cEJDOXdqb1lC&amp;tenantDomain=ald.it&amp;sessionDataKey=bc009b45-fe91-462c-82bd-5cf55703d6f9&amp;relyingParty=x67J19kmSjJ6bl4QX96yeMIEXtMa&amp;type=oidc&amp;sp=myAldFE&amp;isSaaSApp=false&amp;authenticators=BasicAuthenticator%3ALOCAL&amp;reqTenantDomain=ald.it&amp;isUsernameRecovery=false&amp;callback=https%3A%2F%2Fald.mobilitysolutions.it" data-testid="login-page-password-recovery-button">
                password
            </a> ? </div>
  </div>
  <div class="ui divider hidden"></div>
  <div class="field">
    <div class="ui checkbox">
      <input type="checkbox" id="chkRemember" name="chkRemember" data-testid="login-page-remember-me-checkbox">
      <label for="chkRemember">Ricordami su questo computer</label>
    </div>
  </div>
  <input type="hidden" name="sessionDataKey" value="bc009b45-fe91-462c-82bd-5cf55703d6f9">
  <div class="ui divider hidden"></div>
  <div class="mt-0">
    <div class="column buttons">
      <button style="font-family: 'Source Sans 3'!important;" class="ui primary fluid large button" type="submit"> Continua </button>
    </div>
    <div class="column buttons">
    </div>
  </div>
  <script defer="">
    /**
     * Toggles the password visibility using the attribute
     * type of the input.
     *
     * @param event {Event} click target
     * @description stops propagation
     */
    $("#passwordUnmaskIcon").click(function(event) {
      event.preventDefault();
      var $passwordInput = $("#password");
      if ($passwordInput.attr("type") === "password") {
        $(this).addClass("slash outline");
        $passwordInput.attr("type", "text");
      } else {
        $(this).removeClass("slash outline");
        $passwordInput.attr("type", "password");
      }
    });

    function onSubmitResend(token) {
      $("#resendForm").submit();
    }
    // Removing the recaptcha UI from the keyboard tab order
    Array.prototype.forEach.call(document.getElementsByClassName('g-recaptcha'), function(element) {
      //Add a load event listener to each wrapper, using capture.
      element.addEventListener('load', function(e) {
        //Get the data-tabindex attribute value from the wrapper.
        var tabindex = e.currentTarget.getAttribute('data-tabindex');
        //Check if the attribute is set.
        if (tabindex) {
          //Set the tabIndex on the iframe.
          e.target.tabIndex = "-1";
        }
      }, true);
    });
  </script>
</form>

POST ../commonauth

<form action="../commonauth" method="post" id="restartFlowForm">
  <input type="hidden" name="sessionDataKey" value="bc009b45-fe91-462c-82bd-5cf55703d6f9">
  <input type="hidden" name="restart_flow" value="true">
  <input id="tocommonauth" name="tocommonauth" type="hidden" value="true">
</form>

Text Content

This sign-in instance is about to timeout!

You have been idle in this page for too long. For security reasons,you need to
start over or you will be redirected to the sign-in page

Dismiss
Start over


BENVENUTO NEL NUOVO MY AYVENS!

Attendi l'email di definizione dell'utenza.
Accedi e completa la tua registrazione al portale


ACCEDI

Dimenticato Username o password ?

Ricordami su questo computer

Continua