microblog/app/templates/reset_password.html

8 lines
167 B
HTML
Raw Normal View History

2017-09-26 07:16:46 +00:00
{% extends "base.html" %}
2017-09-27 06:43:28 +00:00
{% import "bootstrap_wtf.html" as wtf %}
2017-09-26 07:16:46 +00:00
{% block content %}
<h1>Reset Your Password</h1>
2017-09-27 06:43:28 +00:00
{{ wtf.quick_form(form) }}
2017-09-26 07:16:46 +00:00
{% endblock %}