From 21efb5eb74cbc387f0e4c4900af7342bab424b16 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 8 Apr 2015 10:49:46 +0200 Subject: [PATCH] Enhanced registration/login.html example template. --- docs/topics/auth/default.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index 141114129b5..14342df5e5c 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -848,6 +848,15 @@ implementation details see :ref:`using-the-views`.

Your username and password didn't match. Please try again.

{% endif %} + {% if next %} + {% if user.is_authenticated %} +

You account doesn't have access to this page. To proceed, please + login with an account that has access.

+ {% else %} +

Please login to see this page.

+ {% endif %} + {% endif %} +
{% csrf_token %} @@ -865,6 +874,9 @@ implementation details see :ref:`using-the-views`. + {# Assumes you setup the password_reset view in your URLconf #} +

Lost password?

+ {% endblock %} If you have customized authentication (see