Input elements should have autocomplete attributes (suggested: "current-password")

((DOM) Input elements should have autocomplete attributes (suggested: "current-password")에서 넘어옴)

1 개요[ | ]

Input elements should have autocomplete attributes (suggested: "current-password")
  • input type=​"password"에 대해 autocomplete를 지정하지 않은 경우, chrome Console에 나오는 메시지
  • 권장되는 form은 아래와 같다.
<form id="login" action="login.php" method="post">
<input type="text" autocomplete="username">
<input type="password" autocomplete="current-password">
<input type="submit" value="Sign In!">
</form>

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}