-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add password strength meter #523
base: dev
Are you sure you want to change the base?
Conversation
We should also consider adding some default and personalized strings to the
|
Vary the color of the validation message depending on the score. - Weak/invalid: `#f05452` (tangerine) - Okay: `#43c4d9` (aqua) - Good: `#388ec5` - Great: `#2c58b1` (bluejay)
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.
Ignore, I'm just clearing out old review requests in my GitHub account.
Closes #247
Add a password strength meter to the "New password" fields in
ChangePasswordModal
andResetPasswordModal
using aPasswordStrengthModalInput
, which composesModalInput
. This component will always display validation text, even when the password is valid.Password strength indicator colors:
#f05452
(tangerine)#43c4d9
(aqua)#388ec5
#2c58b1
(bluejay)TODO:
{Reset,Change}PasswordModal
to read the validation result (true/false) of thePasswordStrengthModalInput