14 lines
No EOL
351 B
HTML
14 lines
No EOL
351 B
HTML
{% extends 'base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}Log in{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Log in</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-success" type="submit">Log in</button>
|
|
</form>
|
|
<a href="{% url 'account_reset_password' %}">Forgot Password?</a>
|
|
{% endblock content %} |