ForgotPassword: DONE-Using the Django authentication system- Adapted to use manifold...
[myslice.git] / ui / templates / registration / password_reset_form.html
diff --git a/ui/templates/registration/password_reset_form.html b/ui/templates/registration/password_reset_form.html
new file mode 100644 (file)
index 0000000..dc188cd
--- /dev/null
@@ -0,0 +1,21 @@
+{% extends "layout-unfold1.html" %}
+{% load i18n %}
+
+{% block unfold_main %}
+
+
+
+{% block content %}
+
+<h1>{% trans "Onelab Password reset wizard" %}</h1>
+
+<p>{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}</p>
+
+<form action="" method="post">{% csrf_token %}
+{{ form.email.errors }}
+<p><label for="id_email">{% trans 'Email address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>
+</form>
+
+{% endblock %}
+{% endblock %}
+