12 lines
314 B
HTML
12 lines
314 B
HTML
{% extends "stripped_base.html" %}
|
|
{% block content %}
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{% if form.email.errors %}
|
|
{{ form.email.errors }}
|
|
{% endif %}
|
|
<p>{{ form.email }}</p>
|
|
<input type="submit" class="btn btn-default btn-lg" value="Reset password">
|
|
</form>
|
|
{% endblock %}
|