パスワード入力フォームのautocomplete
https://developer.mozilla.org/ja/docs/Web/HTML/Element/input/password
https://developer.mozilla.org/ja/docs/Web/HTML/Attributes/autocomplete
input type="pasword"
の autocomplete は 2 種類ある
- new-password
- current-password
サインアップとパスワードリセットでは new-password
パスワードの Confirmation も new-password
サインインでは current-password
サインアップとパスワードリセットで、メールアドレスやユーザ名の入力とパスワードの入力が別ページになっている場合も ユーザ名・パスワードのフィールドはパスワードのフィールドと同じページに表示しないとパスワードマネージャがユーザ名・メールアドレスを保存できない。
入力の必要がないフィールドは CSS で表示しないようにしてもよい。
https://www.chromium.org/developers/design-documents/form-styles-that-chromium-understands/
Read other posts