Akron | ca9bd98 | 2016-12-06 16:59:57 +0100 | [diff] [blame^] | 1 | {% 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 %} |