24 lines
870 B
HTML
24 lines
870 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_filters %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="{% url 'view_settings' %}">{% trans 'Settings' %}</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">{% trans 'Password' %}</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<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" class="btn btn-success">{% trans "Change Password" %}</button>
|
|
<a href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a>
|
|
</form>
|
|
{% endblock %} |