shynet/shynet/dashboard/templates/account/password_change.html
2020-04-14 10:31:13 -04:00

15 lines
481 B
HTML

{% extends "account/base.html" %}
{% load i18n a17t_tags %}
{% block head_title %}{% trans "Change Password" %}{% endblock %}
{% block page_title %}{% trans "Change Password" %}{% endblock %}
{% block card %}
<form method="POST" action="{% url 'account_change_password' %}" class="password_change max-w-lg">
{% csrf_token %}
{{ form|a17t }}
<button type="submit" name="action" class="button ~urge !high">{% trans "Change Password" %}</button>
</form>
{% endblock %}