본문 바로가기

웹프로그래밍/HTML

(Chrome) ID/Password 자동 완성 방지

반응형

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">
반응형