diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index 504a69483e2..617de732065 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -847,6 +847,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 %} @@ -864,6 +873,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