portier/source/templates/registration/password_change_form.html

22 lines
524 B
HTML
Raw Normal View History

{% extends 'base.html' %}
{% load i18n %}
{% load bootstrap4 %}
{% block 'content' %}
2024-02-25 23:19:01 +01:00
<h4>{% trans "change_password" %}</h4>
<hr class="my-4">
<div class="row">
2024-02-25 23:19:01 +01:00
<div class="col">
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary" value="login">
{% trans "submit" %}
</button>
{% endbuttons %}
<input type="hidden" name="next" value="{{ next }}">
</form>
</div>
</div>
{% endblock %}