-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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 autocompletion for password reset #27949
Add autocompletion for password reset #27949
Conversation
@szaimen Are you sure you want to assign this PR? Maybe you wanted to request reviews? 😁 |
You are right. I misclicked 😅 |
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.
Nice! This could also be done in login page and password reset page.
core/src/components/login/LoginForm.vue
core/src/components/login/UpdatePassword.vue
281a8fa
to
66e1f88
Compare
Good idea :) Just did that and also unified the |
66e1f88
to
7344b2a
Compare
7344b2a
to
1dd402b
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
923e45a
to
bf2304a
Compare
cb6130b
to
55e149d
Compare
Solved the conflicting files. But I fear there is still the need to compile and push the js. |
55e149d
to
ab1f4a6
Compare
ab1f4a6
to
4e3b538
Compare
I compiled the files, but can't push on @CarlSchwan's branch :( |
I will compile the files and push them after lunch |
/rebase |
Unfortunately the fork seems to be still unpushable... |
@CarlSchwan rebase? |
Using autocomplete="current-password" and autocomplete="new-password" will help browser with integrated password managers to generate safe password for the users. See https://developer.apple.com/documentation/security/password_autofill/enabling_password_autofill_on_an_html_input_element and https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/password#allowing_autocomplete. Also unify autocapitalize="none" autocorrect="off" behavior in a few other places for password input fields. Close nextcloud#27885 Signed-off-by: Carl Schwan <carl@carlschwan.eu> Co-Authored-By: Julien Veyssier <eneiluj@posteo.net> Co-Authored-By: Pytal <24800714+Pytal@users.noreply.github.com>
4e3b538
to
b7a35af
Compare
Using autocomplete="current-password" and autocomplete="new-password"
will help browser with integrated password managers to generate safe
password for the users.
See https://developer.apple.com/documentation/security/password_autofill/enabling_password_autofill_on_an_html_input_element
and https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/password#allowing_autocomplete.
Close #27885
Signed-off-by: Carl Schwan carl@carlschwan.eu