카테고리 없음

[Html] Input elements should have autocomplete attributes

미니시리 2023. 7. 9. 23:00

[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) 
<input type="password" id="user_pwd" name="user_pwd" placeholder="비밀번호를 입력해주세요">

 

노란색 문구가 신경쓰여서 찾아보니 password쪽 input에 autocomplete(자동완성) 옵션을 빼먹어서 나온 문구였습니다.

<input type="password" id="user_pwd" name="user_pwd" placeholder="비밀번호를 입력해주세요" autoComplete="off">

 

autoComplete="off" 추가하여 에러 제거