13 lines
338 B
HTML
13 lines
338 B
HTML
{% extends 'layouts/master.html' %}
|
|
{% block title %}Restablecer contraseña{% endblock %}
|
|
{% block body %}
|
|
<h1>Forgot password</h1>
|
|
<p>We will send you an email to change your password.</p>
|
|
<p>
|
|
<form action="" method="post">
|
|
{{ generate_fields(form) }}
|
|
<input type="submit" class="btn btn-success">
|
|
</form>
|
|
</p>
|
|
{% endblock %}
|