+ {{ form.hidden_tag() }}
+ Required information
-
- {{ form.student }} {{ form.student.label.text|safe}}
-
+ {{ 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.starving }} {{ form.starving.label.text|safe}}
+ {{ form.membership.label }}
+ {% for option in form.membership %}
+
+ {{ option() }} {{ option.label.text }}
+ {% endfor %}
+
+
+
+ {{ form.student }} {{ form.student.label.text|safe}}
+
+
+
+
+
+
+ {{ form.starving }} {{ form.starving.label.text|safe}}
+
+
+
+ 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 {{ config["REGULAR_FEE"] }}€ per year. The membership
+ fee for the supporting membership is {{ config["SUPPORTING_FEE"] }}€ per year. If you are a student,
+ all membership fees are {{ config["SUPPORTING_FEE"] }}€ 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.
+
- 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 {{ config["REGULAR_FEE"] }}€ per year. The membership fee for the supporting membership is {{ config["SUPPORTING_FEE"] }}€ per year. If you are a student, all membership fees are {{ config["SUPPORTING_FEE"] }}€ 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.
-