프로그래밍/HTML
브라우저 '비밀번호 저장' 기능 비활성화
재우니
2020. 9. 21. 12:10
브라우저 '비밀번호 저장' 기능 비활성화
<input type="text" name="UserName" autocomplete="off" readonly
onfocus="this.removeAttribute('readonly');" >
<input type="password" name="Password" autocomplete="off" readonly
onfocus="this.removeAttribute('readonly');" >