Files
breccia-mapper/breccia_mapper/templates/registration/login.html

19 lines
642 B
HTML

{% extends 'base.html' %}
{% load bootstrap4 %}
{% block content %}
<h1>Login</h1>
<form action="" method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<input type="hidden" name="next" value="{{ next }}">
<input type="submit" class="btn btn-primary" value="Login">
{% if config.ALLOW_SIGNUPS %}
<a class="btn btn-info" href="{% url 'account_signup' %}">Sign up</a>
{% endif %}
{% endbuttons %}
<p>Forgot your password? Reset it <a href="{% url 'account_reset_password' %}">here</a>.</p>
</form>
{% endblock %}