mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
19 lines
533 B
HTML
Executable File
19 lines
533 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3 class="h3" id="head_banner">{% trans "Change Password" %}</h3>
|
|
|
|
<form method="POST" action="{% url 'account_change_password' %}" id="change_password_form">
|
|
{% csrf_token %}
|
|
|
|
{% load bootstrap4 %}
|
|
{% bootstrap_form form %}
|
|
<button class="btn btn-info" type="submit" name="action">{% trans "Change Password" %}</button>
|
|
</form>
|
|
{% endblock %}
|