18 lines
431 B
HTML
18 lines
431 B
HTML
{% extends "password_reset/base.html" %}
|
|
{% load i18n %}
|
|
{% load bootstrap4 %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="d-flex justify-content-center">
|
|
<form method="post" action="{{ url }}" class="form">{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">
|
|
{% trans "Send" %}
|
|
</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |