generated from 2martens/django-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
553 B
17 lines
553 B
{% extends "app/base.html" %} |
|
{% load i18n %} |
|
{% load crispy_forms_tags %} |
|
|
|
{% block title %}{{ site.title }} - {{ title }}{% endblock %} |
|
|
|
{% block content %} |
|
<h1>{{ title }}</h1> |
|
|
|
<p>{% trans 'Forgotten your password? Enter your email address below, and we’ll email instructions for setting a new one.' %}</p> |
|
|
|
<form method="post" action="{% url "password_reset" %}"> |
|
{% csrf_token %} |
|
{{ form|crispy }} |
|
<button type="submit" class="btn btn-primary">{% trans "Password reset" %}</button> |
|
</form> |
|
{% endblock %}
|
|
|