-
Notifications
You must be signed in to change notification settings - Fork 0
add social logins #30
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
|
||
export default function LoginForm({ handleSubmit }) { | ||
return ( | ||
<div className="mx-5 mt-5 flex flex-col"> |
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 missing from original form component. Added.
. | ||
</div> | ||
</form>; | ||
); |
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.
The rest of this green is simply "Prettier" running. Nothing crazy.
@@ -34,11 +36,10 @@ export default function LoginPage() { | |||
|
|||
return ( | |||
<main className="flex"> | |||
<section className="flex flex-col py-12 px-16"> |
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.
The flex-col
is stacking all of the elements. Not the intended behavior.
<div className="mt-5 mx-5"></div> | ||
<LoginForm /> | ||
<section className="flex flex-row px-16 py-12"> | ||
<LoginForm handleSubmit={handleSubmit} /> |
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 is part of fixing the breaking change.
@@ -25,7 +25,8 @@ npm-debug.log* | |||
yarn-debug.log* | |||
yarn-error.log* | |||
|
|||
# local env files | |||
# env files | |||
.env |
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.
Just getting the .env file out of the repo. Doesn't have any actual security credentials—so, just a proactive step to prevent security leak. ;)
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.
Stable build. No issues with running npm run build
and npm run start
. Website functioning as expected.
Changes:
The styling for this component is meant to work with the styling that includes the 14-login-page-login-separator.