Form On HTTP URL
What This Means
This indicates that a form is on an HTTP page. Any data entered into the form, including usernames and passwords is not secure.
What Triggers This Issue
This issue is triggered when a form is on a HTTP page. This means that any data entered into the form is not secure. For example:
http://www.getasky.com/contact/ If the above URL contains a form:
<html>
<body>
<form action="https://www.getasky.com/lost-password/"> ...
</form>
</body>
</html> It would be flagged for this issue.How To Fix
All HTTP pages with forms should be changed to HTTPS to avoid security issues for users, and problems loading in a browser.
Last updated on