proxadmin/app/templates/auth/register.html

18 lines
277 B
HTML
Raw Permalink Normal View History

2017-03-08 13:53:09 -05:00
{% extends "base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block title %}Register{% endblock %}
{% block page_content %}
<div class="page-header">
<h1>Register</h1>
</div>
<div class="col-md-4">
{{ wtf.quick_form(form) }}
<br>
</div>
{% endblock %}