web/ldt_utils/user/templates/registration/password_reset_form.html
changeset 5 ae8593287883
parent 4 7c994c98d1df
child 6 7256b057c180
equal deleted inserted replaced
4:7c994c98d1df 5:ae8593287883
     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 %}