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.

38 lines
1.1 KiB

  1. {% extends "base.html" %}
  2. {% load compress static hc_extras %}
  3. {% block content %}
  4. <div class="row">
  5. <form class="col-sm-6 col-sm-offset-3" method="post">
  6. {% csrf_token %}
  7. <div class="panel panel-default">
  8. <div class="panel-body settings-block">
  9. <h2>Disable Authenticator App</h2>
  10. <p></p>
  11. <p>You are about to remove the authenticator app from your
  12. {% site_name %} account.
  13. </p>
  14. {% if is_last %}
  15. <p>
  16. After removing the authenticator app,
  17. <strong>two-factor authentication will no longer be active.</strong>
  18. </p>
  19. {% endif %}
  20. <p>Are you sure you want to continue?</p>
  21. <div class="text-right">
  22. <a
  23. href="{% url 'hc-profile' %}"
  24. class="btn btn-default">Cancel</a>
  25. <button
  26. type="submit"
  27. name="disable_totp"
  28. class="btn btn-danger">Disable Authenticator App</button>
  29. </div>
  30. </div>
  31. </div>
  32. </form>
  33. </div>
  34. {% endblock %}