🙆♀️
ユーザー登録フォームを作っていたらWarningが出ていた
ユーザー登録フォームを作っていた。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
を持っていた方がいいらしい。
これは、過去に入力した情報を記憶し、次に入力するときに最初の文字を入力するだけで自動的に候補を出してくれる機能だ。
autocomplete
属性の値は以下のサイトで確認できる。
参考
Discussion