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.

45 lines
1.2 KiB

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="row">
  4. <div class="col-sm-6 col-sm-offset-3">
  5. <div class="hc-dialog">
  6. <h1>Enter a Confirmation Code</h1>
  7. <br />
  8. <p>
  9. We have sent a confirmation code to your email
  10. address. Please enter it below to continue:
  11. </p>
  12. <form method="POST">
  13. {% csrf_token %}
  14. <div class="form-group {% if wrong_code %}has-error{% endif %}">
  15. <input
  16. id="sudo-code"
  17. type="text"
  18. class="form-control input-lg"
  19. maxlength="6"
  20. name="sudo_code"
  21. autofocus />
  22. {% if wrong_code %}
  23. <div class="help-block">
  24. Not a valid code. Did you type it in correctly?
  25. </div>
  26. {% endif %}
  27. </div>
  28. <button
  29. class="btn btn-lg btn-primary btn-block"
  30. type="submit">
  31. Continue
  32. </button>
  33. </form>
  34. </div>
  35. </div>
  36. </div>
  37. {% endblock %}