{% extends "registration/base.html" %}
{% load i18n %}
{% block js_import %}{{ block.super }}
<script type="text/javascript">
$(document).ready(function() {
$("#pwd_reset_form").validate();
});
</script>
{% endblock %}
{% block breadcrumb %}
<li></li>
<li>{% trans 'Password reset' %}</li>
{% endblock %}
{% block content_title %}{% trans 'Password reset' %}{% endblock %}
{% block title %}{% trans "Password reset" %}{% endblock %}
{% block iricontent%}
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>
<form action="" method="post" id="pwd_reset_form">
<table>
<tr>
<th><label for="id_email">{% trans 'Adresse émail' %}:</label></th>
<td><input id="id_email" type="text" maxlength="75" class="required" name="email"/></td>
</tr>
<tr><td></td><td>{{ form.email.errors }}</td></tr>
<tr><td></td><td><input type="submit" class="button" value="{% trans 'Reset my password' %}" /></td></tr>
</table>
</form>
{% endblock %}