21 lines
518 B
HTML
21 lines
518 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load bootstrap3 %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container text-center" style="max-width:520px;">
|
|
<div class="page-lead">
|
|
<h2>{% trans 'Reset your password' %}</h2>
|
|
<p class="lead">{% trans 'Enter your email address below' %}</p>
|
|
</div>
|
|
|
|
<form method="post" action=".">
|
|
{% csrf_token %}
|
|
{{ form | crispy }}
|
|
<input class="btn btn-default" type="submit" name="submit" value="{% trans 'Submit' %}">
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|