{% if not embedded %}{% extends 'base/base.html' %}{% endif %} {% import 'input/form.html' as form with context %} {% import 'input/field.html' as field with context %} {% block body %}

{% trans %}Salut à Toi association membership request{% endtrans %}

{% trans %}Please fill the form below if you're willing to join the Salut à Toi association.{% endtrans %}
{% call form.form() %} {{ field.text("firstname", _("firstname"), placeholder=_("Given name"), required=true, ) }} {{ field.text("name", _("name"), placeholder=_("Family name"), required=true, ) }} {{ field.textarea("address", _("address"), placeholder=_("Address, post code, city"), required=true, ) }} {{ field.email("email", _("email address"), placeholder=_("please double check your email address"), required=true, ) }} {{ field.text("jid", "Jabber ID", placeholder=_("XMPP identifier (may be your SàT login)"), ) }} {{ field.text("reference", _("reference (in case of renewal)"), placeholder=_("Your adherent number. You may let empty if you don't know it."), ) }} {{ field.textarea("comment", _("comment"), placeholder=_("This is a free field if you have anything to say or request."), ) }} {{ field.checkbox("mailing_list", checked=true) }} {% trans %}I would like to subscribe to the adherents' mailing list (low traffic).{% endtrans %} {{ field.checkbox("documents_read", checked=false, required=true) }} {% trans statutes=''|safe + _("statutes") + ''|safe, rules=''|safe + _("rules") + ''|safe %}I have read the {{statutes}} and {{rules}} and I agree with both of them{% endtrans %} {{ field.submit(_("join the association"), id="membership_submit", class="mt-3") }} {% endcall %}
{% endblock body %}