2020-05-04 18:21:53 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% load i18n crispy_forms_filters %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form method="post">
|
2020-05-15 00:44:59 +00:00
|
|
|
{% csrf_token %}
|
2020-05-04 18:21:53 +00:00
|
|
|
{{ form|crispy }}
|
|
|
|
<input type="submit" class="btn btn-primary btn-block" value="{% trans "Submit" %}">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<a class="btn btn-secondary btn-block" href="{% url "password_change" %}">{% trans "Update my password" %}</a>
|
|
|
|
{% endblock %}
|