2020-07-09 05:14:08 +00:00
|
|
|
{% extends "stripped_base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<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>
|
2020-07-12 15:29:36 +00:00
|
|
|
|
|
|
|
<div style="color:#f44336">
|
|
|
|
{% 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 %}
|
|
|
|
</div>
|
|
|
|
|
2020-07-13 01:45:49 +00:00
|
|
|
<button class="waves-effect waves-light btn green accent-4" type="submit">login</button>
|
2020-07-09 05:14:08 +00:00
|
|
|
<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 %}
|