nmgfitness/users/templates/registration/login.html

33 lines
571 B
HTML

{% extends 'base.html' %}
{% load bootstrap4 %}
{% block content %}
<div class="col-8">
<h2>Login</h2>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit">Login</button>
</p>
</form>
<p>
<a href="{% url 'index' %}">Back to Calendar</a>
</p>
<p>
<a href="{% url 'register' %}">Register</a>
</p>
<p>
<a href="{% url 'password_reset' %}">Reset Password</a>
</p>
<p>
Note that only users that have been Activated by a person from the Fitness Committee will be able to log in after registration.
</p>
</div>
{% endblock %}