mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
15 lines
409 B
HTML
15 lines
409 B
HTML
{% extends 'base.html' %}
|
|
{% load bootstrap4 %}
|
|
|
|
{% block content %}
|
|
<h1>Password Reset</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="Send reset link">
|
|
{% endbuttons %}
|
|
</form>
|
|
{% endblock %} |