web/ldt_utils/user/templates/registration/password_reset_form.html
author ymh <ymh.work@gmail.com>
Tue, 08 Jun 2010 15:31:42 +0200
changeset 4 7c994c98d1df
parent 0 web/ldt/user/templates/registration/password_reset_form.html@ecdfc63274bf
permissions -rw-r--r--
change ldt.ldt to ldt.ldt_utils

{% 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 %}