make crispy

This commit is contained in:
Matthias 2021-11-01 23:03:36 +01:00
parent a8f5661a27
commit 240859c38c
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -2,9 +2,9 @@
{% load i18n %} {% load i18n %}
{% block content %} {% block content %}
<h1> <h3>
{% trans "Two-Factor Authentication Backup Tokens" %} {% trans "Two-Factor Authentication Backup Tokens" %}
</h1> </h3>
{% if backup_tokens %} {% if backup_tokens %}
{% if reveal_tokens %} {% if reveal_tokens %}
@ -22,11 +22,12 @@
<form method="post"> <form method="post">
{% csrf_token %} {% csrf_token %}
<button type="submit"> <button type="submit" class="btn btn-primary">
{% trans 'Generate backup tokens' %} {% trans 'Generate backup tokens' %}
</button> </button>
</form> </form>
<a href="{% url 'two-factor-remove' %}">Disable Two Factor</a> <br>
<a href="{% url 'two-factor-remove' %}" class="btn btn-warning">Disable Two Factor</a>
{% endblock %} {% endblock %}