2020-05-27 19:16:14 +00:00
|
|
|
|
|
|
|
{% extends 'auth/base.html.j2' %}
|
|
|
|
|
|
|
|
{% block title %}{{ gettext('Sign Up') }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2020-06-01 21:43:10 +00:00
|
|
|
{{ render_form(form, onsubmit="return auth.sign_up.submit(this)", action_url=url_for('auth.sign_up_submit')) }}
|
2020-05-27 19:16:14 +00:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|