blob: c430b38d1cd6ccc114a2fca9bee5e6f3b5603e3a (
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>Register</h1>
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
{% endblock %}
|