Update templates

This commit is contained in:
Livvy Mackintosh
2017-10-09 20:23:03 +01:00
parent c0f7107517
commit 8c38748347
17 changed files with 104 additions and 35 deletions

View File

@ -0,0 +1,21 @@
{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% if validlink %}
<form method="post" action=".">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="{% trans 'Submit' %}" />
</form>
{% else %}
<p>{% trans "Password reset failed" %}</p>
{% endif %}
{% endblock %}