diff options
Diffstat (limited to 'app/templates/auth/register.html')
| -rw-r--r-- | app/templates/auth/register.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/templates/auth/register.html b/app/templates/auth/register.html new file mode 100644 index 0000000..c430b38 --- /dev/null +++ b/app/templates/auth/register.html @@ -0,0 +1,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 %} |
