{% extends "layout.html" %} {% block title %}Register :: {{ config.SITE_NAME }}{% endblock %} {% block metatags %} {% endblock %} {% block body %} {% from "_formhelpers.html" import render_field %}

Register

Important: Do not use Outlook (Hotmail/Live/MSN) email addresses, they discard our verification email without sending it to spam. No support is offered if you ignore this warning.

{{ form.csrf_token }}
{{ render_field(form.username, class_='form-control', placeholder='Username') }}
{{ render_field(form.email, class_='form-control', placeholder='Email address') }}
{{ render_field(form.password, class_='form-control', placeholder='Password') }}
{{ render_field(form.password_confirm, class_='form-control', placeholder='Password (confirm)') }}
{% if config.USE_RECAPTCHA %}
{% for error in form.recaptcha.errors %} {{ error }} {% endfor %} {{ form.recaptcha }}
{% endif %}
{% endblock %}