blob: cfd0614d8ac99fcb86451a3749226d61302a8862 [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', disabled= error, btn_class='btn btn-primary',
9action_text=_('sign up')) }}
10{% endblock %}