2021-12-20 20:37:32 +01:00
|
|
|
{% extends "authBase.html" %}
|
|
|
|
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h2>Log In</h2>
|
|
|
|
<form method="post"> {% csrf_token %}
|
|
|
|
|
|
|
|
{% for field in login_form %}
|
|
|
|
<p>
|
|
|
|
{{field.label_tag}}
|
|
|
|
{{field}}
|
|
|
|
{% for error in field.errors %}
|
|
|
|
<p style="color: red;">{{error}}</p>
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
|
|
|
{% endfor %}
|
|
|
|
<input type="submit" value="Login">
|
2022-01-19 20:56:00 +01:00
|
|
|
<div class="linkDefault">
|
|
|
|
<a href="{% url 'resetPassword' %}">Reset password</a>
|
|
|
|
</div>
|
2021-12-20 20:37:32 +01:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|
2021-12-09 23:25:35 +01:00
|
|
|
|