-
-
Notifications
You must be signed in to change notification settings - Fork 175
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
added PasswordTextField component fixed #1702 #1709
base: master
Are you sure you want to change the base?
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.
Good work! Use this component on the LogIn form also!
error={errors.password} | ||
label={intl.formatMessage(messages.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.
Change to label={intl.formatMessage(messages.createYourPassword)}
error={errors.passwordConfirm} | ||
<PasswordTextField | ||
error={errors.confirmPassword} | ||
label={intl.formatMessage(messages.confirmPassword)} |
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.
Change to label={intl.formatMessage(messages.confirmYourPassword)}
label={intl.formatMessage(messages.confirmYourPassword)} | ||
error={errors.passwordConfirm} | ||
<PasswordTextField | ||
error={errors.confirmPassword} |
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.
change to error={errors.passwordConfirm}
@RodriSanchez1 I have fixed all the requested changes and added PasswordTextField on the Login component. Kindly review. |
added PasswordTextField component
close #1702