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