mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-24 01:34:18 +00:00
15 lines
434 B
HTML
Executable File
15 lines
434 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% block head_title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Change Password" %}</h1>
|
|
|
|
<form method="POST" action="" class="password_change">
|
|
{% csrf_token %}
|
|
{{ password_change_form.as_p }}
|
|
<button type="submit" name="action">{% trans "Change Password" %}</button>
|
|
</form>
|
|
{% endblock %}
|