{% trans %}Membership Application{% endtrans %}

{% trans %}How to use this form?{% endtrans %}

{% trans %}Fill out this form and click on "Become a member". Afterwards you will be presented with a PDF, which you have to sign and send to info@c3l.lu or bring it to one of our next events. Print it or save it to your local hardware, because we don't save a copy on our servers for data protection reasons!{% endtrans %}

{% if form.errors %} {% for fieldname, errors in form.errors.items() %} {% for error in errors %}

{{ fieldname }} - {{ error }}

{% endfor %} {% endfor %} {% endif %} {% if crypto_error %}

{% trans %}Couldn't fetch conversion rate for cryptocurrencies. Please try again later or use another payment option!{% endtrans %}

{% endif %}
{{ form.hidden_tag() }} {% trans %}Required information{% endtrans %}
{{ form.username.label }} {{ form.username(required=True, class="pure-input-1 field-error" if form.username.errors else "pure-input-1") }}
{{ form.email.label }} {{ form.email(required=True, class="pure-input-1 field-error" if form.email.errors else "pure-input-1") }}
{{ form.fullname.label }} {{ form.fullname(required=True, class="pure-input-1 field-error" if form.fullname.errors else "pure-input-1") }}

{{ form.membership.label }}

{% for option in form.membership %} {% endfor %}

{% trans %}What's difference between the different membership options?{% endtrans %}

{% trans %}All the options include to following benefits:{% endtrans %}

{% trans %}Becoming a regular member gives you these additional benefits:{% endtrans%}

  • {% trans %}Voting rights on general assemblys{% endtrans %}
  • {% trans %}Access to our internal mailinglist{% endtrans %}

{% trans %}You can read more on the membership here.{% endtrans %}

{% trans %}What are the membership fees?{% endtrans %}

{% trans regular_fee=config["REGULAR_FEE"], supporting_fee=config["SUPPORTING_FEE"] %}The membership fee for the regular membership is {{ regular_fee }}€ per year. The membership fee for the supporting membership is {{ supporting_fee }}€ per year. If you are a student, all membership fees are {{ supporting_fee }}€ per year. For that please select the corresponding option.{% endtrans %}

{% trans %}I cannot afford the membership?{% endtrans %}

{% trans %}If you cannot afford the membership, please contact us via info@c3l.lu first, before filling out the membership form. We will try to find a solution together.{% endtrans %}

{{ form.payment.label }}

{% for option in form.payment %} {% endfor %}
{{ form.birthday.label }} {{ form.birthday(class="pure-input-1 field-error" if form.birthday.errors else "pure-input-1") }}

{% trans %}Why do you ask for the birthday?{% endtrans %}

{% trans %}This information helps us with a few different things:{% endtrans %}

  • {% trans %}We need to know if you are underage. If so your legal representatives needs to sign this membership application.{% endtrans %}
  • {% trans %}We ask the city of Luxembourg every year for a financial grant and they ask how many members we have over the age of 26 and how many under the age of 26.{% endtrans %}
{% trans %}Additional information (Optional){% endtrans %}
{{ form.street.label }} {{ form.street(class="pure-input-1 field-error" if form.street.errors else "pure-input-1") }}
{{ form.zip.label }} {{ form.zip(class="pure-input-1 field-error" if form.zip.errors else "pure-input-1") }}
{{ form.city.label }} {{ form.city(class="pure-input-1 field-error" if form.city.errors else "pure-input-1") }}
{{ form.state.label }} {{ form.state(class="pure-input-1 field-error" if form.state.errors else "pure-input-1") }}
{{ form.country.label }} {{ form.country(class="pure-input-1 field-error" if form.country.errors else "pure-input-1") }}
{{ form.submit(class="text-xlarge pure-button pure-input-1 pure-button-primary") }}