ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [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" 추가하여 에러 제거

     

    댓글

Designed by Tistory.