0
|
1 |
{% extends "registration/base.html" %} |
|
2 |
{% load i18n %} |
|
3 |
{% block js_import %}{{ block.super }} |
|
4 |
<script type="text/javascript"> |
|
5 |
$(document).ready(function() { |
|
6 |
$("#pwd_reset_form").validate(); |
|
7 |
}); |
|
8 |
</script> |
|
9 |
{% endblock %} |
|
10 |
|
|
11 |
{% block breadcrumb %} |
|
12 |
<li></li> |
|
13 |
<li>{% trans 'Password reset' %}</li> |
|
14 |
{% endblock %} |
|
15 |
{% block content_title %}{% trans 'Password reset' %}{% endblock %} |
|
16 |
|
|
17 |
|
|
18 |
{% block title %}{% trans "Password reset" %}{% endblock %} |
|
19 |
|
|
20 |
{% block iricontent%} |
|
21 |
|
|
22 |
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p> |
|
23 |
|
|
24 |
<form action="" method="post" id="pwd_reset_form"> |
|
25 |
<table> |
|
26 |
<tr> |
|
27 |
<th><label for="id_email">{% trans 'Adresse émail' %}:</label></th> |
|
28 |
<td><input id="id_email" type="text" maxlength="75" class="required" name="email"/></td> |
|
29 |
|
|
30 |
</tr> |
|
31 |
<tr><td></td><td>{{ form.email.errors }}</td></tr> |
|
32 |
<tr><td></td><td><input type="submit" class="button" value="{% trans 'Reset my password' %}" /></td></tr> |
|
33 |
</table> |
|
34 |
</form> |
|
35 |
|
|
36 |
{% endblock %} |