15 lines
354 B
HTML
15 lines
354 B
HTML
{% extends "base.html" %}
|
||
|
||
{% load i18n %}
|
||
|
||
{% block title %}{{ block.super }} – {% trans "Password Settings" %}{% endblock %}
|
||
|
||
{% block content %}
|
||
<h1>{% trans "Password Settings" %}</h1>
|
||
|
||
<form action="" method="post">{% csrf_token %}
|
||
{% include "form.html" %}
|
||
{% include "formbuttons_save.html" %}
|
||
</form>
|
||
{% endblock %}
|