dc188cd70db3146f5ea43377085d05f4c7ee1996
[myslice.git] / ui / templates / registration / password_reset_form.html
1 {% extends "layout-unfold1.html" %}
2 {% load i18n %}
3
4 {% block unfold_main %}
5
6
7
8 {% block content %}
9
10 <h1>{% trans "Onelab Password reset wizard" %}</h1>
11
12 <p>{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}</p>
13
14 <form action="" method="post">{% csrf_token %}
15 {{ form.email.errors }}
16 <p><label for="id_email">{% trans 'Email address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>
17 </form>
18
19 {% endblock %}
20 {% endblock %}
21