You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.3 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Continue to healthchecks.io</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. </head>
  8. <body>
  9. <form id="form-auto" method="post">{% csrf_token %}</form>
  10. <script>
  11. document.getElementById("form-auto").submit();
  12. </script>
  13. <style>
  14. body {
  15. font-family: Arial;
  16. text-align: center;
  17. margin: 10em;
  18. }
  19. input {
  20. display: inline-block;
  21. margin-bottom: 0;
  22. font-weight: normal;
  23. text-align: center;
  24. vertical-align: middle;
  25. touch-action: manipulation;
  26. cursor: pointer;
  27. background-image: none;
  28. border: 1px solid transparent;
  29. white-space: nowrap;
  30. padding: 10px 16px;
  31. font-size: 18px;
  32. line-height: 1.3333333;
  33. border-radius: 6px;
  34. color: #ffffff;
  35. background-color: #22bc66;
  36. border-color: #1ea65a;
  37. }
  38. </style>
  39. <noscript>
  40. <p>You are about to log into healthchecks.io.</p>
  41. <p>Please press the button below to continue:</p>
  42. <br />
  43. <form id="form" method="post">
  44. {% csrf_token %}
  45. <input
  46. id="submit-btn"
  47. type="submit"
  48. class="btn btn-lg btn-primary"
  49. value="Continue to healthchecks.io">
  50. </form>
  51. </noscript>
  52. </body>
  53. </html>