flask-login-example/templates/web/forgot_password.html

13 lines
338 B
HTML
Raw Normal View History

2017-05-17 20:16:30 +02:00
{% extends 'layouts/master.html' %}
{% block title %}Restablecer contraseña{% endblock %}
{% block body %}
2017-05-18 18:25:54 +02:00
<h1>Forgot password</h1>
<p>We will send you an email to change your password.</p>
2017-05-17 20:16:30 +02:00
<p>
<form action="" method="post">
2017-05-18 18:25:54 +02:00
{{ generate_fields(form) }}
<input type="submit" class="btn btn-success">
2017-05-17 20:16:30 +02:00
</form>
</p>
{% endblock %}