본문 바로가기

개발/기타

안전하지 않은 양식입니다. 자동 완성이 사용 중지되었습니다.

반응형

안전하지 않은 양식입니다. 자동 완성이 사용 중지되었습니다....?

이거 뭐지 갑자기 로그인 Form에 이런 말풍선이 뜬다.

 

이것 저것 보다가 왜 그런지 이유를 찾았습니다.

 

1. 홈페이지 주소는 SSL 인증서를 사용해 https 를 사용중입니다.

2. Form 태그 action에 https가 아닌 http 연결을 합니다.

 

위에 두 조건이 맞으면 저렇게 나오네요.(다른 경우도 있겠지만 제 경우는 이랬습니다. ㅋㅋ)

 

홈페이지는 https://playon.tistory.com 이라고 치고 form은 아래처럼 https가 아닌 http로 되어 있었네요.

<form method="post" action="http://playon.tistory.com/submit.php">
  <div style="font-weight:bold">Playon Tistory Login ID</div>
  <div><input type="text"></div>
  <div><input type="password"></div>
  <div><input type="submit" value="LOGIN"></div>
</form>

action 주소를 https로 하거나 빼버리면 해결~~~

 

 

 

 

반응형