-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7957ac
commit fa368e3
Showing
1 changed file
with
26 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -199,7 +199,7 @@ const PageSignUp = () => { | |
) : ( | ||
<></> | ||
)} | ||
{/* <div | ||
<div | ||
style={{ | ||
color: 'var(--text-dynamic)', | ||
textAlign: 'center', | ||
|
@@ -208,26 +208,26 @@ const PageSignUp = () => { | |
margin: '20px', | ||
}} | ||
> | ||
<h2>You can no longer signup and register for Frosh events.</h2> | ||
</div> */} | ||
{/* <div | ||
<h2>F!rosh 2T4 is over! Check back next year.</h2> | ||
</div> | ||
<div | ||
className="sign-up-button" | ||
onMouseOver={() => { | ||
checkErrors(true); | ||
}} | ||
> */} | ||
<Button | ||
label="Create Account" | ||
style={{ margin: 15 }} | ||
isDisabled={anyErrors} | ||
onClick={async () => { | ||
const anyErrors = checkErrors(true); | ||
if (anyErrors === false) { | ||
submitForm(); | ||
} | ||
}} | ||
/> | ||
{/* </div> */} | ||
> | ||
<Button | ||
label="Create Account" | ||
style={{ margin: 15 }} | ||
isDisabled={anyErrors} | ||
onClick={async () => { | ||
const anyErrors = checkErrors(true); | ||
if (anyErrors === false) { | ||
submitForm(); | ||
} | ||
}} | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
<div | ||
|
@@ -242,24 +242,25 @@ const PageSignUp = () => { | |
className={`sign-up-success ${pageState === 'success' ? 'sign-up-success-appear' : ''}`} | ||
> | ||
<div style={{ margin: 'auto auto' }}> | ||
<h2 class="proxima-nova-text">{`Thank you for creating an account, ${ | ||
<h2 className="proxima-nova-text">{`Thank you for creating an account, ${ | ||
accountObj['preferredName'] === null || | ||
accountObj['preferredName'] === undefined || | ||
accountObj['preferredName'] === '' | ||
? accountObj['firstName'] | ||
: accountObj['preferredName'] | ||
}.`}</h2> | ||
{accountObj['leadur'] === true ? ( | ||
<h3 class="proxima-nova-text"> | ||
Check your inbox for an email from [email protected] for a link to verify your email. Your account will be reviewed and | ||
shortly become an official Leedur account. | ||
<h3 className="proxima-nova-text"> | ||
Check your inbox for an email from [email protected] for a link to verify | ||
your email. Your account will be reviewed and shortly become an official Leedur | ||
account. | ||
</h3> | ||
) : ( | ||
<> | ||
<h1 class="proxima-nova-text">You aren't done just yet!</h1> | ||
<h3 class="proxima-nova-text"> | ||
Check your inbox for an email from [email protected] a link to verify your email. You still need to register and | ||
pay for the F!rosh Week event. | ||
<h1 className="proxima-nova-text">You aren't done just yet!</h1> | ||
<h3 className="proxima-nova-text"> | ||
Check your inbox for an email from [email protected] a link to verify | ||
your email. You still need to register and pay for the F!rosh Week event. | ||
</h3> | ||
</> | ||
)} | ||
|