8fba3201ae77934808cfeedad5b6549552202ac9
[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 <h2>{% trans "Welcome to Onelab secured Password reset wizard" %}</h2>
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