{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>Introduce una nueva contraseña</h2>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Restablecer contraseña</button>
|
|
</form>
|
|
{% endblock %}
|