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