CINXE.COM

Authentication page

<!DOCTYPE html> <!-- template name: html.form.login.template.html --> <!-- Configurable default behavior for the Remember Username checkbox --> <!-- set the checkbox to unchecked --> <html lang="en" dir="ltr"> <head> <title>Authentication page</title> <base href="https://idpb2e.adeo.com/"/> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/> <meta http-equiv="x-ua-compatible" content="IE=edge" /> <script src='assets/scripts/captcha/captcha-utils.js'></script> <script src='assets/scripts/captcha/captcha-script-loader.js' defer></script> <script src='assets/scripts/pf-general.js'></script> <link rel="stylesheet" type="text/css" href="assets/css/main.css" /> <link rel="stylesheet" type="text/css" href="assets/css/adeo.css" /> </head> <body> <!-- CAPTCHA settings--> <div id="captchaEnabled" hidden>false</div> <div id="captchaScriptName" hidden>"$captchaScriptName"</div> <div id="captchaAttributes" hidden>$captchaAttributes</div> <div id="captchaCSPNonce" hidden>"f2EzZ3uNuwwIKel6"</div> <div class="ping-container ping-signin login-template"> <!-- if there is a logo present in the 'company-logo' container, then 'has-logo' class should be added to 'ping-header' container. --> <div class="ping-header"> <span class="company-logo"><img src="/assets/images/logo-footer.jpg" alt="ADEO Logo"/></span> Welcome </div> <!-- .ping-header --> <div class="ping-body-container"> <div> <form method="POST" action="/idp/J32dPe11cC/resumeSAML20/idp/SSO.ping" autocomplete="off"> <div class="ping-messages"> </div> <div class="ping-input-label"> Username </div> <div class="ping-input-container"> <input id="username" type="text" size="36" name="pf.username" value="" autocorrect="off" autocapitalize="off" /><!----> <div class="place-bottom type-alert tooltip-text" id="username-text"> <div class="icon">!</div> Please fill out this field. </div> </div> <div class="ping-input-label"> Password </div> <div class="ping-input-container password-container"> <input id="password" type="password" size="36" name="pf.pass" /> <a id="reveal" class="password-show-button icon-view"></a> <div class="place-bottom type-alert tooltip-text" id="password-text"> <div class="icon">!</div> Please fill out this field. </div> </div> <label class="remember-username"> <div class="ping-checkbox-container stacked"> <input id="rememberUsername" type="checkbox" name="pf.rememberUsername" /> Remember my username <div class="icon"></div> </div> </label> <div class="ping-buttons"> <input type="hidden" name="pf.ok" value="" /> <input type="hidden" name="pf.cancel" value="" /> <span id="signOnButtonSpan"> <a class="ping-button normal allow" id="signOnButton" title="Sign On"> Sign On </a> </span> </div><!-- .ping-buttons --> <input type="hidden" name="pf.adapterId" id="pf.adapterId" value="HtmlFormLdapUidOrUpn" /> </form> </div><!-- .ping-body// blank div --> </div><!-- .ping-body-container --> </div><!-- .ping-container --> <script type="text/javascript" nonce="f2EzZ3uNuwwIKel6"> window.onload = function(){ setFocus('username'); toggleMobile(false); var remember = false && true; var checkbox = document.getElementById('rememberUsername'); checkbox.checked = isMobile() || remember; } handleReturnPress('username', postOk); handleReturnPress('password', postOk); registerEventHandler('signOnButton', 'click', postOk); registerEventHandler('forgotPasswordLink', 'click', postForgotPassword); registerEventHandler('recoverUsernameLink', 'click', postRecoverUsername); registerEventHandler('registrationLink', 'click', postRegistration); registerEventHandler('reveal', 'click', function() { revealPassword('password', 'reveal'); }); var formSubmitted = false; function postOk() { if (formSubmitted) return true; formSubmitted = true; var hasError = false; CaptchaManager.execute(function() { // remove error tips if (document.forms[0]['pf.username'].value !== '') { document.getElementById('username-text').className = 'place-bottom type-alert tooltip-text'; } if (document.forms[0]['pf.pass'].value !== '') { document.getElementById('password-text').className = 'place-bottom type-alert tooltip-text'; } // Add back if (document.forms[0]['pf.username'].value === '') { document.getElementById('username-text').className += ' show'; hasError = true; } else if (document.forms[0]['pf.pass'].value === '') { document.getElementById('password-text').className += ' show'; hasError = true; } else { submitForm(); } if (hasError) { formSubmitted = false; } }); } function postForgotPassword() { document.forms[0]['pf.passwordreset'].value = 'clicked'; document.forms[0].submit(); } function postRecoverUsername() { document.forms[0]['pf.usernamerecovery'].value = 'clicked'; document.forms[0].submit(); } function postRegistration() { document.forms[0]['$registrationValue'].value = true; document.forms[0].submit(); } function submitForm() { var signOnButtonSpan = document.getElementById('signOnButtonSpan'); signOnButtonSpan.classList.add('content-columns', 'disabled'); signOnButtonSpan.style = "pointer-events: none;"; var signOnButton = document.getElementById('signOnButton'); signOnButton.innerHTML = 'Signing on...'; document.forms[0]['pf.ok'].value = 'clicked'; document.forms[0].submit(); CaptchaManager.cleanup(); } </script> </body> </html>