diff --git a/c3l_membership/templates/index.html b/c3l_membership/templates/index.html --- a/c3l_membership/templates/index.html +++ b/c3l_membership/templates/index.html @@ -2,8 +2,8 @@ {% block title %}C3L Membership Application{% endblock %} {% block style %} - {{ super() }} - +{{ super() }} + {% endblock %} {% block nav %} @@ -12,146 +12,148 @@ {% 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, +

+
+
+
+ +

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") }} -
+ {% 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.email.label }} + {{ form.email(required=True, class="pure-u-1-1") }}
-
-
- {{ form.fullname.label }} - {{ form.fullname(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/student member gives you these additional benefits:

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

You can read more on the membership here.

-
+
+
+
+ {{ 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/student member gives you these additional benefits:

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

You can read more on the membership here.

+

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 %} -
+
+
+
+ {{ form.payment.label }} + {% for option in form.payment %} + + {% endfor %}
- Additional information -
-
- {{ form.street.label }} - {{ form.street(class="pure-u-1-1") }} -
+
+ Additional information +
+
+ {{ form.street.label }} + {{ form.street(class="pure-u-1-1") }}
-
-
- {{ form.zip.label }} - {{ form.zip(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.city.label }} + {{ form.city(class="pure-u-1-1") }}
-
-
- {{ form.state.label }} - {{ form.state(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.country.label }} + {{ form.country(class="pure-u-1-1") }}
-
-
- {{ form.gpg.label }} - {{ form.gpg(class="pure-u-1-1") }} -
+
+
+
+ {{ form.gpg.label }} + {{ form.gpg(class="pure-u-1-1") }}
-
-
- {{ form.jabber.label }} - {{ form.jabber(class="pure-u-1-1") }} -
+
+
+
+ {{ form.jabber.label }} + {{ form.jabber(class="pure-u-1-1") }}
-
-
- {{ form.twitter.label }} - {{ form.twitter(class="pure-u-1-1") }} -
+
+
+
+ {{ form.twitter.label }} + {{ form.twitter(class="pure-u-1-1") }}
- - - -
- {{ form.submit }} -
-
- -
-
-
+
+ + + +
+ {{ form.submit }} +
+ +
+
+
+
{% endblock %}