microblog/app/templates/register.html

12 lines
258 B
HTML
Raw Normal View History

2017-09-13 06:31:39 +00:00
{% extends "base.html" %}
2017-09-27 06:43:28 +00:00
{% import 'bootstrap/wtf.html' as wtf %}
2017-09-13 06:31:39 +00:00
2017-09-27 06:43:28 +00:00
{% block app_content %}
2017-09-30 07:21:17 +00:00
<h1>{{ _('Register') }}</h1>
2017-09-27 06:43:28 +00:00
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
2017-09-13 06:31:39 +00:00
{% endblock %}