Password reset, standardize some stuff.
[cas.git] / src / accounts / templates / registration / password_reset_complete.html
diff --git a/src/accounts/templates/registration/password_reset_complete.html b/src/accounts/templates/registration/password_reset_complete.html
new file mode 100644 (file)
index 0000000..59497d3
--- /dev/null
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+
+{% block title %}{{ title }}{% endblock %}
+
+
+{% block content %}
+<div class="enclose">
+  <div class="enclosed">
+    <h1>{{ title }}</h1>
+
+    <p>{% trans "Your password has been set.  You may go ahead and log in now." %}</p>
+
+    <p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p>
+  </div>
+</div>
+{% endblock %}