🙆‍♀️

ユーザー登録フォームを作っていたらWarningが出ていた

2021/09/20に公開

ユーザー登録フォームを作っていた。Google DevToolsで以下の警告が出ていた。

[DOM] Input elements should have autocomplete attributes (suggested: "new-password"): (More info: https://goo.gl/9p2vKq) <input type=​"password" id=​"password" aria-describedby=​"passwordHelp" placeholder required name=​"password" value>​

Input要素はautocomplete attributesを持っていた方がいいらしい。

https://goo.gl/9p2vKq

これは、過去に入力した情報を記憶し、次に入力するときに最初の文字を入力するだけで自動的に候補を出してくれる機能だ。

autocomplete属性の値は以下のサイトで確認できる。

https://developer.mozilla.org/ja/docs/Web/HTML/Attributes/autocomplete

参考

https://shootacean.com/entry/2021/7/30/autocomplete-attribute-to-improve-usability-of-user-input

Discussion