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
Password managers attempt to auto-fill the retro password field, but store a single password regardless of the actual retro being accessed.
It looks like a hidden input element with the retro ID would help at least some password managers understand the form, but it is not clear how well supported this approach is. Also the example uses a regular email field which is hidden via CSS, but it is worth checking if this would also work with a regular type="hidden" field with an appropriate name (according to the spec it should be valid to mark a hidden field with autofill="username", and when applied in this way autofilldescribes the meaning of the value, not a field to be auto-populated).
ID should be used rather than slug so that moving a retro does not invalidate saved passwords.
This change should also include replacing the current autocomplete="off" on the password (which was originally intended to avoid this problem but is apparently ignored), with autocomplete="current-password". It may also be semantically useful to mark the field as required.
The text was updated successfully, but these errors were encountered:
Password managers attempt to auto-fill the retro password field, but store a single password regardless of the actual retro being accessed.
It looks like a hidden input element with the retro ID would help at least some password managers understand the form, but it is not clear how well supported this approach is. Also the example uses a regular
email
field which is hidden via CSS, but it is worth checking if this would also work with a regulartype="hidden"
field with an appropriate name (according to the spec it should be valid to mark ahidden
field withautofill="username"
, and when applied in this wayautofill
describes the meaning of the value, not a field to be auto-populated).ID should be used rather than slug so that moving a retro does not invalidate saved passwords.
This change should also include replacing the current
autocomplete="off"
on the password (which was originally intended to avoid this problem but is apparently ignored), withautocomplete="current-password"
. It may also be semantically useful to mark the field asrequired
.The text was updated successfully, but these errors were encountered: