insecure_form.html 448 B

123456789101112131415161718
  1. <html>
  2. <head><title>Page that displays an insecure form</title>
  3. <script>
  4. function submitForm() {
  5. form = document.getElementById("insecureForm");
  6. form.submit();
  7. }
  8. </script>
  9. </head>
  10. <body>
  11. This page contains a form which targets a non-secure URL,
  12. causing insecure content (when this page is loaded over https).<br>
  13. <form id="insecureForm" action="http://does-not-exist.test/form_target.html">
  14. <input type="submit" />
  15. </form>
  16. </body>
  17. </html>