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>
#deadline-passed-signup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    background-color: var(--main-background);
    margin-bottom: 100px;
    padding: 20px;
    margin-top: 10px;
}
#deadline-passed-signup h4 {
    font-size: 18px;
    font-weight: bold !important;
}
</style>

<script>
const END_DATE_TIME = Date.parse("7/1518/2022 1809:00:00 PDT");
const DEADLINE_PASSED_STATE_VAR = END_DATE_TIME < Date.now();

const handleDeadlinePassedState = () => {
	$("form[name='signupform']").html(`<div id='deadline-passed-signup'><h4>The deadline for the Morgan Stanley Innovation Awards has passed.</h4> <p>Please contact us at <a href='mailto:morganstanley@theonevalley.com'>morganstanley@theonevalley.com</a> if you have any questions.</p></div>`);
}

if (DEADLINE_PASSED_STATE_VAR == true) {
	handleDeadlinePassedState();
}

</script>

...