mirror of https://github.com/django/django.git
Enhanced registration/login.html example template.
This commit is contained in:
parent
32f0c8f796
commit
21efb5eb74
|
@ -848,6 +848,15 @@ implementation details see :ref:`using-the-views`.
|
||||||
<p>Your username and password didn't match. Please try again.</p>
|
<p>Your username and password didn't match. Please try again.</p>
|
||||||
{% endif %}
|
{% 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' %}">
|
<form method="post" action="{% url 'django.contrib.auth.views.login' %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<table>
|
<table>
|
||||||
|
@ -865,6 +874,9 @@ implementation details see :ref:`using-the-views`.
|
||||||
<input type="hidden" name="next" value="{{ next }}" />
|
<input type="hidden" name="next" value="{{ next }}" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
{# Assumes you setup the password_reset view in your URLconf #}
|
||||||
|
<p><a href="{% url 'password_reset' %}">Lost password?</a></p>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
If you have customized authentication (see
|
If you have customized authentication (see
|
||||||
|
|
Loading…
Reference in New Issue