mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-14 19:13:10 +00:00
* Improvement and consolidation of various auth forms * Update "disable 2FA" page to use form fields Note: Requires merging of https://github.com/valohai/django-allauth-2fa/pull/135 * Update django-allauth-2fa requirements
28 lines
647 B
HTML
28 lines
647 B
HTML
{% extends "account/base.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
<h3>
|
|
{% trans "Disable Two-Factor Authentication" %}
|
|
</h3>
|
|
|
|
<p>{% trans "Are you sure?" %}</p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<hr>
|
|
<div class='btn-group float-right' role='group'>
|
|
<button type="submit" class="btn btn-danger w-100">
|
|
<span class='fas fa-times-circle'></span> {% trans 'Disable 2FA' %}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
<div>
|
|
<a type='button' href="{% url 'settings' %}" class="btn btn-secondary">
|
|
<span class='fas fa-undo-alt'></span> {% trans "Return to Site" %}
|
|
</a>
|
|
</div>
|
|
{% endblock %}
|