-
Notifications
You must be signed in to change notification settings - Fork 2
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
Login signup Form components #3
Conversation
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.
Great work so far
src/pages/Auth/SignUp/SignupForm.js
Outdated
<TextInputField label="Password" name="password" placeholder="eg. A1@_3er" /> | ||
<TextInputField label="Confirm Password" name="confirm_password" /> |
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.
Great implementation so far, I want to suggest if you can use the HideableTextFormField for the Password input, instead of of TextInputField component to add the visibility to the password.
src/pages/Auth/SignIn/SigninForm.js
Outdated
className="sign-in-form" | ||
> | ||
<TextInputField label="Email" name="email" placeholder="eg. example@example.com" /> | ||
<TextInputField label="Password" name="password" placeholder="eg. A1@_3er" /> |
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.
Great work so far, I want to suggest using the HideableTextFormField in the password input , instead of the TextInputField component to add the visiblilty for password.
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.
You code now works perfectly, it is time to merge.
Update the Login and SignUp page forms:
Implemented tasks:
authenticationSlice
for adding reducers.Need to implement:
Current login and signup forms: