aboutsummaryrefslogtreecommitdiff
path: root/app/templates/auth/reset_password_request.html
blob: c516141ac6a845f195d70d4b23ef53ed05a93165 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}

{% block app_content %}
<h1>Reset Password</h1>
<div class="row">
	<div class="col-md-4">
		{{ wtf.quick_form(form) }}
	</div>
</div>
{% endblock %}