x x x
x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated with SSO macro and styling


HTML
<style>

#loginform #error-message{
	display: none;
}

#loginform #error-message:first-child{
	display: block!important;
}


  @media only screen and (max-width: 580px) {
    .description-container {
      width: 100% !important;
    }

    .field-group input {
      padding: 0 10px !important;
    }

    #loginform>fieldset>div {
      padding: 0;
    }
  }


  #loginform > fieldset > div{
    padding: 0 !important;
  }


  .description-container #link-container {
    display: none !important;
  }
</style>

<script>

window.addEventListener("load", function(){
	//$('.login-form-container').append(`<p>Forgot your password? Reset it <a href="mailto:morganstanley@theonevalley.com?subject=Reset Password Request&body=Please reset my password.">here</a>.</p>`);
// $('.login-form-container').append(`<p>Forgot`<p id="pw-reset" class="hidden">Forgot your password? Reset it <a href="/display/MSA/Forgot+Password">here</a>.</p>`);

	$('.login-form-container').append(`<p><a href="/display/MSA/Sign+Up">Don't have an account? Sign up here.</a></p>`);
});

</script>

...