mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
25 lines
605 B
HTML
25 lines
605 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block headtitle %} | Change Password{% endblock headtitle %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block innercontent %}
|
|
<div class="user-action-form-wrap">
|
|
<div class="user-action-form-inner">
|
|
|
|
<h1>{% trans "Change Password" %}</h1>
|
|
|
|
<form method="POST" action="{% url 'account_change_password' %}" class="password_change">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button type="submit" name="action">{% trans "Change Password" %}</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|