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

11 lines
326 B
HTML
Raw Permalink Normal View History

2017-05-17 20:16:30 +02:00
{% extends 'layouts/master.html' %}
2017-05-18 18:25:54 +02:00
{% block title %}Update password{% endblock %}
2017-05-17 20:16:30 +02:00
{% block body %}
2017-05-18 18:25:54 +02:00
<h1>Update password</h1>
2017-05-17 20:16:30 +02:00
<form action="" method="post">
2017-05-18 18:25:54 +02:00
{{ generate_fields(form) }}
2017-05-17 20:16:30 +02:00
<input type="hidden" name="email" value="{{ email }}">
2017-05-18 18:25:54 +02:00
<input type="submit" class="btn btn-success" value="Update">
2017-05-17 20:16:30 +02:00
</form>
{% endblock %}