mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
24 lines
602 B
HTML
24 lines
602 B
HTML
{% extends 'base.html' %}
|
|
{% load bootstrap4 %}
|
|
|
|
{% block content %}
|
|
{% if validlink %}
|
|
|
|
<h1>Choose a New Password</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="Change password">
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<p>That link isn't valid - has it already been used? You can request a new link <a href="{% url 'account_reset_password' %}">here</a>.</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %} |