20 lines
532 B
HTML
20 lines
532 B
HTML
|
{% extends "auth/login_base.html" %}
|
||
|
{% load i18n django_bootstrap5 %}
|
||
|
|
||
|
{% block login_content %}
|
||
|
|
||
|
<div class="well">
|
||
|
<div class="row-fluid">
|
||
|
<h2>{% trans 'Doble Factor of Authentication' %}</h2>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="well">
|
||
|
<div class="row-fluid">
|
||
|
<div>
|
||
|
<span>{% trans "We have sent an email with a link that you have to select in order to login." %}</span>
|
||
|
</div>
|
||
|
</div><!-- /.row-fluid -->
|
||
|
</div><!--/.well-->
|
||
|
{% endblock %}
|