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:45:51 -0400 |
| commit | 21efb5eb74cbc387f0e4c4900af7342bab424b16 (patch) | |
| tree | 05a1faaa53df5318c87b52656b1214cba0dcb308 | |
| parent | 32f0c8f79697391e7067f1479045aa910ffa2c4e (diff) | |
Enhanced registration/login.html example template.
| -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 141114129b..14342df5e5 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -848,6 +848,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> @@ -865,6 +874,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 |
