반응형
password 자동완성 막기
크롬에서
아이디 비번 저장 한 경우,
< input type="password" id="user_pwd" name="user_pwd" autocomplete="off">
이게 한개면 자동으로 세팅된다.
그래서 가짜 패스워드를 만들어 주면 된다.
< input type="password" id="user_pwd_fake" name="user_pwd_fake" autocomplete="off" style="display: none;">
< input type="password" id="user_pwd" name="user_pwd" autocomplete="off">
아이디 비번 저장 한 경우,
< input type="password" id="user_pwd" name="user_pwd" autocomplete="off">
이게 한개면 자동으로 세팅된다.
그래서 가짜 패스워드를 만들어 주면 된다.
< input type="password" id="user_pwd_fake" name="user_pwd_fake" autocomplete="off" style="display: none;">
< input type="password" id="user_pwd" name="user_pwd" autocomplete="off">
반응형
'웹프로그래밍 > HTML' 카테고리의 다른 글
크롬(chorme)에서 textarea 사이즈조절 막기 (0) | 2015.10.02 |
---|---|
모바일 웹 개발시 유용한 팁 (0) | 2015.09.04 |
HTML5 비디오태그 <video></video> (0) | 2015.04.24 |
HTML5 오디오태그 <audio></audio> (0) | 2015.04.24 |
HTML escape 문자 (0) | 2015.04.09 |