Password Reset templates rearranged to portal/templates/
[myslice.git] / portal / templates / password_reset_form.html
diff --git a/portal/templates/password_reset_form.html b/portal/templates/password_reset_form.html
new file mode 100644 (file)
index 0000000..8fba320
--- /dev/null
@@ -0,0 +1,21 @@
+{% extends "layout-unfold1.html" %}
+{% load i18n %}
+
+{% block unfold_main %}
+
+
+
+{% block content %}
+
+<h2>{% trans "Welcome to Onelab secured Password reset wizard" %}</h2>
+
+<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 %}
+