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.


HTML
<style> 
@media only screen and (max-width: 580px){
	.description-container{
		width: 100%!important;
	}
	.field-group input{
		padding: 0 10px!important;
	}
  #loginform > fieldset > div {
    padding: 0;
  }
}  

.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 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>

...