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;
	}
}

.description-container #link-container {
    display: none !important;
}

#login-issue-btns {
    display: flex;
    height: auto;
}

.login-issue-btn {
    width: 50%;
    margin: unset;
    padding: 20px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
}

.login-issue-btn a {
   text text-decoration: none !important;
}

.learn-more-section {
    position: absolute;
    left: 20%;
    top: 50%;
    padding: 25px;
    background-color: #0d5d8b;
    color: white;
}

.learn-more-section a {
    display: block;
    border: 1px solid white;
    border-radius: 7px;
    margin-top: 20px;
    width: max-content;
    padding: 10px 20px;
    text-decoration: none;
    color: white !important;
    cursor: pointer;
}

.learn-more-section a:hover {
    color: white;
}
</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-issue-btns').append(`<p class="login-issue-btn"><a href="/display/SBAAN/Sign+Up">Don't have an account?</a></p>`);
    $('#login-issue-btns').append(`<p class="login-issue-btn"><a href="/display/SBAAN/SBA+Forgot+Password">Forgot Password?</a></p>`);
});

</script>

...