-
-
Notifications
You must be signed in to change notification settings - Fork 27
Setup landing page #84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Use Authform component as a container to handle presentational logic for SignUpForm and LoginForm. Add PropTypes module and proptypes to components.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks awesome! Thanks Angelo! :)
}; | ||
|
||
return ( | ||
<Box component={Paper} elevetion={3} padding={3}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is elevetion
meant to be elevation
?
|
||
return ( | ||
<Box component={Paper} elevetion={3} padding={3}> | ||
{activeSignUpForm && <SignUpForm toggleActiveForm={toggleActiveForm} />} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting approach -- I'm used to writing {activeSignUpForm ? <SignUpForm toggleActiveForm={toggleActiveForm} /> : <LoginForm>}
, but this is fine :)
What type of PR is this? (check all applicable)
Description
Update Landing Page UI with registration/authentication form and copy.
Related Tickets & Documents
Closes #3
Before & After
Before

After
