Renamed app and Django template

This commit is contained in:
2020-02-19 10:55:46 +01:00
parent 85d5f0b123
commit 06cd1e4291
31 changed files with 46 additions and 45 deletions

View File

@ -0,0 +1,17 @@
{% extends "food_planner/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 well 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 %}