{% extends "pure/layout.html" %} {% block title %}C3L Membership Application{% endblock %} {% block style %} {{ super() }} {% endblock %} {% block nav %}
{% endblock %} {% block content %}

Membership Application

How to use this form

Fill out this form and click on "Become a member". Afterwards you will be presented with a PDF, which you have to 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!

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

{{ fieldname }} - {{ error }}

{% endfor %} {% endfor %} {% endif %}
{{ form.hidden_tag() }} Required information
{{ form.username.label }} {{ form.username(required=True, class="pure-u-1-1") }}
{{ form.email.label }} {{ form.email(required=True, class="pure-u-1-1") }}
{{ form.fullname.label }} {{ form.fullname(required=True, class="pure-u-1-1") }}
{{ form.membership.label }} {% for option in form.membership %} {% endfor %}

What's difference between the different membership options?

All the options include to following benefits:

Becoming a regular member gives you these additional benefits:

  • Voting rights on general assemblys
  • Access to our internal mailinglist

You can read more on the membership here.

What are the membership fees?

The membership fee for the regular membership is 120€ per year. The membership fee for the supporting membership is 40€ per year. If you are a student, all membership fees are 40€ per year. For that please select the corresponding option.

I cannot afford the membership?

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.

{{ form.payment.label }} {% for option in form.payment %} {% endfor %}
Additional information
{{ form.birthday.label }} {{ form.birthday(class="pure-u-1-1") }}
{{ form.street.label }} {{ form.street(class="pure-u-1-1") }}
{{ form.zip.label }} {{ form.zip(class="pure-u-1-1") }}
{{ form.city.label }} {{ form.city(class="pure-u-1-1") }}
{{ form.state.label }} {{ form.state(class="pure-u-1-1") }}
{{ form.country.label }} {{ form.country(class="pure-u-1-1") }}
{{ form.submit }}
{% endblock %}