ScoDoc/app/templates/auth/reset_password.html

11 lines
233 B
HTML
Raw Normal View History

2021-05-29 18:22:51 +02:00
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<h1>Reset Your Password</h1>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
{% endblock %}