blob: 5dd47c121f8de7db559592e03932c7c34bf42947 [file] [log] [blame]
Akronca9bd982016-12-06 16:59:57 +01001{% extends "base.html" %}
2{% from 'macros.html' import render_form %}
3
4{% block content %}
5<h2>Sign up</h2>
6{% include 'flash_messages.html' %}
7
8{{ render_form(form, action_url=url_for('signup'), method='POST', btn_class='btn btn-primary',
9 action_text=_('sign up')) }}
10<!--
11<form action="{{ url_for('signup') }}" method="POST" class="form-horizontal" role="form">
12 {% include 'forms.html' %}
13</form>
14-->
15{% endblock %}