Last active
January 2, 2019 06:36
-
-
Save mellertson/05b36bc929fa4667c77010cf5932de0d to your computer and use it in GitHub Desktop.
Login Template for Django 2.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This file should be saved as: templates/registration/login.html | |
This file was copied from the Django documentation here: | |
https://docs.djangoproject.com/en/2.1/topics/auth/default/#module-django.contrib.auth.views | |
--> | |
{% extends "base.html" %} | |
{% block content %} | |
{% if form.errors %} | |
<p>Your username and password didn't match. Please try again.</p> | |
{% endif %} | |
{% if next %} | |
{% if user.is_authenticated %} | |
<p>Your 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 'login' %}"> | |
{% csrf_token %} | |
<table> | |
<tr> | |
<td>{{ form.username.label_tag }}</td> | |
<td>{{ form.username }}</td> | |
</tr> | |
<tr> | |
<td>{{ form.password.label_tag }}</td> | |
<td>{{ form.password }}</td> | |
</tr> | |
</table> | |
<input type="submit" value="login"> | |
<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 content %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment