You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, one login form of mine has a checkbox for the remember-me feature of Symfony. I implemented an optional passkey-login for that form, which works great with one caveat: The checkbox for remember-me is ignored and thus users logging in with a Passkey are not remembered and must login every time they come back or their session is expired. I could enable always remember me in Symfony, but for that project that feature shall be optional.
I did not find a documented way to get the Symfony UX controller to work with a remember-me checkbox.
Another very similar feature, I could not find, would be to allow a form field for an authenticator name (and pass that to my authenticator entity) when a new authenticator is registered.
Example
No response
The text was updated successfully, but these errors were encountered:
In think both features would be nice to have, but for now, we decided to ditch the optional remember-me and made id mandatory. And for the name of the authenticators, we implemented as a workaround a name on our WebauthnCredential entity and a little AJAX-Form to change it later, so our users can use their own names instead of the Uuids of their Passkeys.
Additional to that, we implemented a Symfony service that keeps the a local copy of the list of provider names from https://github.com/passkeydeveloper/passkey-authenticator-aaguids updated and resolves the aaguids of the passkeys to user readable names. That name-resolving would also be a nice feature for the bundle by the way.
Description
Hi, one login form of mine has a checkbox for the remember-me feature of Symfony. I implemented an optional passkey-login for that form, which works great with one caveat: The checkbox for remember-me is ignored and thus users logging in with a Passkey are not remembered and must login every time they come back or their session is expired. I could enable always remember me in Symfony, but for that project that feature shall be optional.
I did not find a documented way to get the Symfony UX controller to work with a remember-me checkbox.
Another very similar feature, I could not find, would be to allow a form field for an authenticator name (and pass that to my authenticator entity) when a new authenticator is registered.
Example
No response
The text was updated successfully, but these errors were encountered: