Form URL Insecure
What This Means
HTML pages that contain a form with an action attribute URL that is insecure (HTTP). This means that any data entered into the form is not secure, as it could be viewed in transit.
What Triggers This Issue
This issue is triggered when a HTML page contains a form with an action attribute URL that is insecure (HTTP). This means that any data entered into the form is not secure. For example:
<html>
<body>
<form action="http://www.getasky.com/lost-password/"> ...
</form>
</body>
</html>How To Fix
All URLs contained within forms across a website should be encrypted and therefore need to be HTTPS.
Last updated on