15 lines
No EOL
536 B
HTML
15 lines
No EOL
536 B
HTML
{% extends 'base.html' %}
|
|
{% load crispy_forms_tags i18n %}
|
|
|
|
{% block head_title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mx-auto max-w-md mt-6">
|
|
<h2 class="text-3xl font-bold text-center mb-6">{% trans "Change Password" %}</h2>
|
|
<form method="post" action="{% url 'account_change_password' %}" class="space-y-4">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-success w-full" type="submit">{% trans "Change Password" %}</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |