Move templates to /templates
This commit is contained in:
parent
159d9c52c4
commit
0381d331aa
10 changed files with 11 additions and 9 deletions
|
@ -5,22 +5,24 @@
|
||||||
<h1>{% block title %}{% trans "Login" %}{% endblock %}</h1>
|
<h1>{% block title %}{% trans "Login" %}{% endblock %}</h1>
|
||||||
|
|
||||||
{% if wizard.steps.current == 'auth' %}
|
{% if wizard.steps.current == 'auth' %}
|
||||||
<p>{% blocktrans %}Enter your credentials.{% endblocktrans %}</p>
|
<div class="alert alert-info">{% blocktrans %}Enter your credentials.{% endblocktrans %}</div>
|
||||||
{% elif wizard.steps.current == 'token' %}
|
{% elif wizard.steps.current == 'token' %}
|
||||||
|
<div class="alert alert-info">
|
||||||
{% if device.method == 'call' %}
|
{% if device.method == 'call' %}
|
||||||
<p>{% blocktrans %}We are calling your phone right now, please enter the
|
{% blocktrans %}We are calling your phone right now, please enter the
|
||||||
digits you hear.{% endblocktrans %}</p>
|
digits you hear.{% endblocktrans %}
|
||||||
{% elif device.method == 'sms' %}
|
{% elif device.method == 'sms' %}
|
||||||
<p>{% blocktrans %}We sent you a text message. Please enter the token we
|
{% blocktrans %}We sent you a text message. Please enter the token we
|
||||||
included.{% endblocktrans %}</p>
|
included.{% endblocktrans %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>{% blocktrans %}Please enter the token displayed by your generator.
|
{% blocktrans %}Please enter the token displayed by your generator.
|
||||||
{% endblocktrans %}</p>
|
{% endblocktrans %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</div>
|
||||||
{% elif wizard.steps.current == 'backup' %}
|
{% elif wizard.steps.current == 'backup' %}
|
||||||
<p>{% blocktrans %}Use this form for entering backup tokens for logging in.
|
<div class="alert alert-info">{% blocktrans %}Use this form for entering backup tokens for logging in.
|
||||||
These tokens have been generated for you to print and keep safe. Please
|
These tokens have been generated for you to print and keep safe. Please
|
||||||
enter one of these backup tokens to login to your account.{% endblocktrans %}</p>
|
enter one of these backup tokens to login to your account.{% endblocktrans %}</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<form action="" method="post">{% csrf_token %}
|
<form action="" method="post">{% csrf_token %}
|
||||||
|
|
Loading…
Reference in a new issue