diff --git a/pinaxcon/templates/account/password_reset_token.html b/pinaxcon/templates/account/password_reset_token.html new file mode 100644 index 0000000000000000000000000000000000000000..6d35a36bb25f9705e13f401e225154bb3e0c2d8f --- /dev/null +++ b/pinaxcon/templates/account/password_reset_token.html @@ -0,0 +1,21 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load bootstrap %} + +{% block head_title %}{% trans "Set your new password" %}{% endblock %} + +{% block content %} +
+
+
+ {% trans "Set your new password" %} +
+ {% csrf_token %} + {{ form|bootstrap }} + +
+
+
+
+{% endblock %}