-
Notifications
You must be signed in to change notification settings - Fork 338
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 show/hide button to password fields #1861
Conversation
type="button" | ||
id={id} | ||
onClick={linkEvent(this, handleToggleShow)} | ||
aria-label={show ? "Hide Password" : "Show 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.
Needs i18n
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.
Some of the strings in this file still need fixed.
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.
Which ones?
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.
Ok translations are merged now.
type="button" | ||
id={id} | ||
onClick={linkEvent(this, handleToggleShow)} | ||
aria-label={show ? "Hide Password" : "Show 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.
Some of the strings in this file still need fixed.
* Make working password inputs * Make show/hide password button use icon * Tweak look * Handle delete account form separately from change settings form * Adjust password strengthometer position * Incorporate PR feedback * Add translations
* Make working password inputs * Make show/hide password button use icon * Tweak look * Handle delete account form separately from change settings form * Adjust password strengthometer position * Incorporate PR feedback * Add translations
Description
Gives the user the ability to toggle the visibility of their password when using password input fields.
Screencast_20230707_191946.webm
Screenshots
With forgot password link
With password strengthometer
I also tweaked some parts of the settings page.
Before
After