added authentication

This commit is contained in:
MassiveAtoms
2020-07-09 02:14:08 -03:00
parent 62b9dfd94f
commit cce3b1e733
18 changed files with 349 additions and 89 deletions

View File

@ -0,0 +1,11 @@
{% 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 %}