{% import 'macros_form.html' as form without context %}
{% call form.segment() %}
{% call form.msgbox() %}
{% if email_error is defined %}
{{ form.err(htmlstr('\n %s\n %s\n ') % (email_error, adminmail)) }}
{{ reregister_hint }}
{% endif %}
{% if register_hint is defined %}
{{ form.err(htmlstr('\n %s
\n %s\n ') % (trans('hint_title_rmail'), register_hint)) }}
{% endif %}
{% endcall %}
{% call form.box(table=True, title=trans('label_details')) %}
{{ form.tablefield(label=trans('label_email'), name='address', type='text', value=address) }}
{{ details }}
{% endcall %}
{% endcall %}
{% if extra_registration_info is defined %}
{{ extra_registration_info }}
{% endif %}