Password reset, standardize some stuff.
[cas.git] / src / accounts / templates / registration / password_reset_form.html
diff --git a/src/accounts/templates/registration/password_reset_form.html b/src/accounts/templates/registration/password_reset_form.html
new file mode 100644 (file)
index 0000000..88d609e
--- /dev/null
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block title %}{{ title }}{% endblock %}
+
+{% block content %}
+<div class="enclose">
+  <form class="enclosed" method="post">
+    {% csrf_token %}
+    <h1>{{ title }}</h1>
+
+    <p>{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}</p>
+
+    {{ form.as_p }}
+
+    <button type="submit">{% trans 'Reset my password' %}</button>
+  </form>
+</div>
+{% endblock %}