web/ldt/user/templates/registration/password_reset_form.html
changeset 1 eb9188f2ee4f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/ldt/user/templates/registration/password_reset_form.html	Fri Oct 22 18:14:30 2010 +0200
@@ -0,0 +1,36 @@
+{% 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 %}