Repo refactor and webproject hooks fixes
[astakos] / snf-astakos-app / astakos / im / templates / registration / password_reset_form.html
diff --git a/snf-astakos-app/astakos/im/templates/registration/password_reset_form.html b/snf-astakos-app/astakos/im/templates/registration/password_reset_form.html
new file mode 100644 (file)
index 0000000..d4de79a
--- /dev/null
@@ -0,0 +1,25 @@
+{% extends 'im/base_two_cols.html'%}
+
+{% block page.title %}
+Login
+{% endblock %}
+
+{% block body %}
+<div class="section">
+    <img class="pic" src="{{ IM_STATIC_URL }}images/pictures/login_pic.png" />
+</div>
+{% comment %}{% include "im/services_description.html" %}{% endcomment %}
+{% endblock body %}
+    
+{% block body.right %}
+     {% if "local" in im_modules %}
+        <form action="{% url django.contrib.auth.views.password_reset %}" method="post"
+            class="login innerlabels">{% csrf_token %}
+            <h2 class="formheader"><span>RESET PASSWORD</span></h2>
+            {% include "im/form_render.html" %}
+            <div class="form-row submit">
+                <input type="submit" class="submit altcol" value="SUBMIT" />
+            </div>
+        </form>
+      {% endif %}
+{% endblock %}