From af95cbffe110e63c7f2c429c4b542c87afd0abe2 Mon Sep 17 00:00:00 2001 From: Max Yakovenko Date: Sat, 21 Jul 2018 10:56:11 +0300 Subject: [PATCH] fix reset password form template --- .../accounts_ext/reset_password_change.html | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/templates/accounts_ext/reset_password_change.html b/templates/accounts_ext/reset_password_change.html index 4434f4f..e230192 100644 --- a/templates/accounts_ext/reset_password_change.html +++ b/templates/accounts_ext/reset_password_change.html @@ -1,11 +1,17 @@ {% extends 'base.html' %} +{% load crispy_forms_tags %} -{% block title %}Сбросить пароль{% endblock %} +{% block title %}{{ title }}{% endblock %} {% block content %} -
- {% csrf_token %} - {{ form.as_p }} - -
+
+
+
+
+
{{ title }}
+
+
+ {% crispy form %} +
+
{% endblock %}