layout and style changes
[myslice.git] / portal / templates / password_reset_form.html
index 8fba320..427c4fe 100644 (file)
@@ -1,21 +1,17 @@
-{% extends "layout-unfold1.html" %}
-{% load i18n %}
-
-{% block unfold_main %}
-
-
-
+{% extends "layout.html" %}
 {% 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 %}
+<div class="row">
+       <h1><img src="{{ STATIC_URL }}img/icon_user_small.png" alt="Password reset" /> Password reset</h1>
+</div>
+<div class="row">
+       <h3>Welcome to Onelab secured Password reset wizard</h3>
+
+       <p>Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one.</p>
+       
+       <form action="/portal/pass_reset/" method="post">{% csrf_token %}
+       {{ form.email.errors }}
+       <p><label for="id_email">Email address:</label> {{ form.email }} <input type="submit" value="Reset my password" /></p>
+       </form>
+</div>
 {% endblock %}