react의 input에서 type="password"
사용시 나오는 오류입니다.
오류 메시지
오류: [DOM] Input elements should have autocomplete attributes (suggested: "current-password")
해결 방법
input 태그 안에 autoComplete="on" 속성을 추가합니다.
<input
autoComplete="on"
type="password"
name="pass"
placeholder="영문, 숫자 조합으로 8자 이상 입력"
required="required"
onChange={handleChange}
/>
반응형
'개발 > React' 카테고리의 다른 글
[react] 카운트다운 구현 (ft. 5, 4, 3, 2, 1) (0) | 2021.12.05 |
---|---|
[react] switch toggle 버튼 (0) | 2021.12.02 |
[react] [DOM] Input elements should have autocomplete attributes (suggested: "current-password") 오류 해결 (0) | 2021.11.23 |
[react] Next.js에 global 폰트 삽입하기 (ft. index.html 역할) (0) | 2021.10.20 |
[react] react hooks로 form 구현 (ft. input이 많을 때) (0) | 2021.10.17 |
댓글