mark texts for translation
[redakcja.git] / redakcja / templates / registration / password_reset_confirm.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3 {% load bootstrap_tags %}
4
5 {% block inner_content %}
6 <h1>{{ title }}</h1>
7
8 {% if validlink %}
9
10 <p>{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}</p>
11
12 <form action="" method="post">{% csrf_token %}
13 {{ form|as_bootstrap }}
14 <input type="submit" class="btn btn-default" value="{% trans 'Change my password' %}">
15 </form>
16
17 {% else %}
18
19 <p>{% trans "The password reset link was invalid, possibly because it has already been used.  Please request a new password reset." %}</p>
20
21 {% endif %}
22
23 {% endblock %}