This repository was archived by the owner on Sep 10, 2024. It is now read-only.
This repository was archived by the owner on Sep 10, 2024. It is now read-only.
Include an invisible username field in password change forms #3032
Open
Description
We had that originally in the server-side rendered password recovery form: if you include a hidden <input type="text" value="alice" autocomplete="username" />
so that password manager can detect which account the password was just changed.
This means:
- we need an anonymous GraphQL API to fetch infos about the recovery ticket
- we need to implement that on the password recovery form
- we need to implement that on the password change form (easier because we already know the user here)