64 lines
2.7 KiB
HTML
64 lines
2.7 KiB
HTML
{% extends "two_factor/_base.html" %}
|
|
{% load i18n two_factor %}
|
|
|
|
{% block content %}
|
|
<h1>{% block title %}{% trans "Account Security" %}{% endblock %}</h1>
|
|
|
|
{% if default_device %}
|
|
{% if default_device_type == 'TOTPDevice' %}
|
|
<p>{% trans "Tokens will be generated by your token generator." %}</p>
|
|
{% elif default_device_type == 'PhoneDevice' %}
|
|
<p>{% blocktrans with primary=default_device|device_action %}Primary method: {{ primary }}{% endblocktrans %}</p>
|
|
{% elif default_device_type == 'RemoteYubikeyDevice' %}
|
|
<p>{% blocktrans %}Tokens will be generated by your YubiKey.{% endblocktrans %}</p>
|
|
{% endif %}
|
|
|
|
{% if available_phone_methods %}
|
|
<h2>{% trans "Backup Phone Numbers" %}</h2>
|
|
<p>{% blocktrans %}If your primary method is not available, we are able to
|
|
send backup tokens to the phone numbers listed below.{% endblocktrans %}</p>
|
|
<ul>
|
|
{% for phone in backup_phones %}
|
|
<li>
|
|
{{ phone|device_action }}
|
|
<form method="post" action="{% url 'two_factor:phone_delete' phone.id %}"
|
|
onsubmit="return confirm('Are you sure?')">
|
|
{% csrf_token %}
|
|
<button class="btn btn-xs btn-warning"
|
|
type="submit">{% trans "Unregister" %}</button>
|
|
</form>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<p><a href="{% url 'two_factor:phone_create' %}"
|
|
class="btn btn-info">{% trans "Add Phone Number" %}</a></p>
|
|
{% endif %}
|
|
|
|
<h2>{% trans "Backup Tokens" %}</h2>
|
|
<p>
|
|
{% blocktrans %}If you don't have any device with you, you can access
|
|
your account using backup tokens.{% endblocktrans %}
|
|
{% blocktrans count counter=backup_tokens %}
|
|
You have only one backup token remaining.
|
|
{% plural %}
|
|
You have {{ counter }} backup tokens remaining.
|
|
{% endblocktrans %}
|
|
</p>
|
|
<p><a href="{% url 'two_factor:backup_tokens' %}"
|
|
class="btn btn-info">{% trans "Show Codes" %}</a></p>
|
|
|
|
<h3>{% trans "Disable Two-Factor Authentication" %}</h3>
|
|
<p>{% blocktrans %}Although we strongly discourage you to do so, you can
|
|
also disable two-factor authentication for your account.{% endblocktrans %}</p>
|
|
<p><a class="btn btn-danger" href="{% url 'two_factor:disable' %}">
|
|
{% trans "Disable Two-Factor Authentication" %}</a></p>
|
|
{% else %}
|
|
<p>{% blocktrans %}Two-factor authentication is not enabled for your
|
|
account. Enable two-factor authentication for enhanced account
|
|
security.{% endblocktrans %}</p>
|
|
<p><a href="{% url 'two_factor:setup' %}" class="btn btn-primary">
|
|
{% trans "Enable Two-Factor Authentication" %}</a>
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|