Some checks reported errors
continuous-integration/drone/push Build was killed
19 lines
605 B
HTML
19 lines
605 B
HTML
{% extends "pxy_dashboard/account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block page_content %}
|
|
<div class="w-25 mx-auto my-5">
|
|
<h1>{% trans "Change Password" %}</h1>
|
|
|
|
<form method="POST" action="{% url 'account_change_password' %}" class="password_change" novalidate>
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-primary" type="submit" name="action">{% trans "Change Password" %}</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|