mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
18 lines
576 B
HTML
18 lines
576 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_filters %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Change Password" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<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 %} |