| {% extends "base.html" %} | |
| {% from 'macros.html' import render_form %} | |
| {% block content %} | |
| <h2>Sign up</h2> | |
| {% include 'flash_messages.html' %} | |
| {{ render_form(form, action_url=url_for('.signup'), method='POST', disabled= error, btn_class='btn btn-primary', | |
| action_text=_('sign up')) }} | |
| {% endblock %} |