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.

52 lines
1.2 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. <style>
  11. body {
  12. font-family: Arial;
  13. text-align: center;
  14. margin: 10em;
  15. }
  16. input {
  17. display: inline-block;
  18. margin-bottom: 0;
  19. font-weight: normal;
  20. text-align: center;
  21. vertical-align: middle;
  22. touch-action: manipulation;
  23. cursor: pointer;
  24. background-image: none;
  25. border: 1px solid transparent;
  26. white-space: nowrap;
  27. padding: 10px 16px;
  28. font-size: 18px;
  29. line-height: 1.3333333;
  30. border-radius: 6px;
  31. color: #ffffff;
  32. background-color: #22bc66;
  33. border-color: #1ea65a;
  34. }
  35. </style>
  36. <p>You are about to log into {{ site_name }}.</p>
  37. <p>Please press the button below to continue:</p>
  38. <br />
  39. <form method="post">
  40. {% csrf_token %}
  41. <input
  42. id="submit-btn"
  43. type="submit"
  44. class="btn btn-lg btn-primary"
  45. value="Continue to {{ site_name }}">
  46. </form>
  47. </body>
  48. </html>