mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
27 lines
855 B
HTML
Executable File
27 lines
855 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
{% load i18n %}
|
|
{% load account %}
|
|
|
|
{% block head_title %}{% trans "Password Reset" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% if user.is_authenticated %}
|
|
{% include "account/snippets/already_logged_in.html" %}
|
|
{% endif %}
|
|
|
|
<h3 class="h3" id="head_banner">{% trans "Password Reset" %}</h3>
|
|
<p class="forgot_password_info" >{% trans "Forgotten your password? Enter your email address below to reset it." %}</p>
|
|
|
|
<form method="POST" id="forgot_password_form" action="{% url 'account_reset_password' %}">
|
|
{% csrf_token %}
|
|
|
|
{% load bootstrap4 %}
|
|
{% bootstrap_form form %}
|
|
<input class="btn btn-outline-primary " type="submit" value="{% trans 'Reset Password' %}" />
|
|
</form>
|
|
|
|
<p class="forgot_password_info">{% blocktrans %}Please contact us if you are unable to reset your password.{% endblocktrans %}</p>
|
|
|
|
{% endblock %}
|