diff options
| author | Laurent Peuch <cortex@worlddomination.be> | 2015-04-08 10:49:46 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-05-21 20:46:07 -0400 |
| commit | 27fdd4562014cbff31a3a00d3c4a8339e86886b7 (patch) | |
| tree | 1f546355618c85cdbb566554d8b9adba895bfee6 /docs | |
| parent | 6260ae70151bc1be4c2dade27163d0790e79867b (diff) | |
[1.8.x] Enhanced registration/login.html example template.
Backport of 1369da676f3bd83d694ca5f00c5012f16b007acb from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth/default.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index 504a69483e..617de73206 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -847,6 +847,15 @@ implementation details see :ref:`using-the-views`. <p>Your username and password didn't match. Please try again.</p> {% endif %} + {% if next %} + {% if user.is_authenticated %} + <p>You account doesn't have access to this page. To proceed, please + login with an account that has access.</p> + {% else %} + <p>Please login to see this page.</p> + {% endif %} + {% endif %} + <form method="post" action="{% url 'django.contrib.auth.views.login' %}"> {% csrf_token %} <table> @@ -864,6 +873,9 @@ implementation details see :ref:`using-the-views`. <input type="hidden" name="next" value="{{ next }}" /> </form> + {# Assumes you setup the password_reset view in your URLconf #} + <p><a href="{% url 'password_reset' %}">Lost password?</a></p> + {% endblock %} If you have customized authentication (see |
