{% extends 'main/layout.html' %}
{% block title %}Enter new password{% endblock %}
{% block content %}
<main>
<h1>Set a new password!</h1>
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Change my password">
</form>
</main>
{% endblock content %}