mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
16 lines
483 B
HTML
16 lines
483 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-info" value="Login">
|
|
{% endbuttons %}
|
|
<p>Forgot your password? Reset it <a href="{% url 'password_reset' %}">here</a>.</p>
|
|
</form>
|
|
{% endblock %} |