2024-01-19 19:33:28 +00:00
|
|
|
{% extends "auth/login_base.html" %}
|
|
|
|
{% load i18n django_bootstrap5 %}
|
|
|
|
|
|
|
|
{% block login_content %}
|
|
|
|
|
|
|
|
<div class="well">
|
|
|
|
<div class="row-fluid">
|
2024-02-05 11:25:02 +00:00
|
|
|
<h2>{% trans 'Two-factor Authentication' %}</h2>
|
2024-01-19 19:33:28 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="well">
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div>
|
2024-02-05 11:25:02 +00:00
|
|
|
<span>{% trans "We have sent you an email with a link that you have to click to log in." %}</span>
|
2024-01-19 19:33:28 +00:00
|
|
|
</div>
|
|
|
|
</div><!-- /.row-fluid -->
|
|
|
|
</div><!--/.well-->
|
|
|
|
{% endblock %}
|