diff --git a/c3l_membership/templates/index.html b/c3l_membership/templates/index.html new file mode 100644 --- /dev/null +++ b/c3l_membership/templates/index.html @@ -0,0 +1,157 @@ +{% 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/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.payment.label }} + {% for option in form.payment %} + + {% endfor %} +
+
+ Additional information +
+
+ {{ 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.gpg.label }} + {{ form.gpg(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.submit }} +
+
+
+
+
+
+
+{% endblock %}