diff --git a/templates/base.html b/templates/base.html index 12fe5548..943d443e 100644 --- a/templates/base.html +++ b/templates/base.html @@ -55,7 +55,7 @@ {% else%} diff --git a/templates/registration/logged_out.html b/templates/registration/logged_out.html index 48949e84..c0c27f47 100644 --- a/templates/registration/logged_out.html +++ b/templates/registration/logged_out.html @@ -1,4 +1,4 @@ -{% extends "registration/logged_out.html" %} +{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} @@ -13,4 +13,4 @@ SPDX-License-Identifier: GPL-3.0-or-later {% block content %}

{% trans "Thanks for spending some quality time with the Web site today." %}

{% trans 'Log in again' %}

-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/registration/login.html b/templates/registration/login.html index 8d10a1b9..73df7521 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,8 +1,17 @@ -{% extends "admin/login.html" %} +{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-2.0-or-later {% endcomment %} {% load i18n %} -{% block title %}{% trans "Log in" %}{% endblock %} \ No newline at end of file +{% block title %}{% trans "Log in" %}{% endblock %} + +{% block content %} +

Login

+
+ {% csrf_token %} + {{ form.as_p }} + +
+{% endblock %} diff --git a/templates/registration/password_change_done.html b/templates/registration/password_change_done.html index d42fbfd9..45edfe02 100644 --- a/templates/registration/password_change_done.html +++ b/templates/registration/password_change_done.html @@ -1,4 +1,4 @@ -{% extends "registration/password_change_done.html" %} +{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} diff --git a/templates/registration/password_change_form.html b/templates/registration/password_change_form.html index 07ab38c9..45edfe02 100644 --- a/templates/registration/password_change_form.html +++ b/templates/registration/password_change_form.html @@ -1,4 +1,4 @@ -{% extends "registration/password_change_form.html" %} +{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} diff --git a/templates/registration/password_reset_complete.html b/templates/registration/password_reset_complete.html index f0ec4b8f..055244cb 100644 --- a/templates/registration/password_reset_complete.html +++ b/templates/registration/password_reset_complete.html @@ -1,4 +1,4 @@ -{% extends "registration/password_reset_complete.html" %} +{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} diff --git a/templates/registration/password_reset_confirm.html b/templates/registration/password_reset_confirm.html index 62a761d5..edb1ae1e 100644 --- a/templates/registration/password_reset_confirm.html +++ b/templates/registration/password_reset_confirm.html @@ -1,4 +1,4 @@ -{% extends "registration/password_reset_confirm.html" %} +{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} diff --git a/templates/registration/password_reset_done.html b/templates/registration/password_reset_done.html index ea67e596..055244cb 100644 --- a/templates/registration/password_reset_done.html +++ b/templates/registration/password_reset_done.html @@ -1,4 +1,4 @@ -{% extends "registration/password_reset_done.html" %} +{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} diff --git a/templates/registration/password_reset_form.html b/templates/registration/password_reset_form.html index 865d5160..055244cb 100644 --- a/templates/registration/password_reset_form.html +++ b/templates/registration/password_reset_form.html @@ -1,4 +1,4 @@ -{% extends "registration/password_reset_form.html" %} +{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %}