{# Ënnstatus Copyright (C) 2015 Dennis Fink This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . #} {% extends 'base.html' %} {% import 'bootstrap/wtf.html' as wtf %} {% set title = 'Membership' %} {% block content %}

Register as member

{{ form.hidden_tag() }} {{ wtf.form_field(form.username, form_type='horizontal') }} {{ wtf.form_field(form.email, form_type='horizontal') }} {{ wtf.form_field(form.fullname, form_type='horizontal') }} {{ wtf.form_field(form.street, form_type='horizontal') }} {{ wtf.form_field(form.city, form_type='horizontal') }} {{ wtf.form_field(form.zip, form_type='horizontal') }} {{ wtf.form_field(form.country, form_type='horizontal') }} {{ wtf.form_field(form.gpg, form_type='horizontal') }}
{{ form.membership.label(class_='control-label col-lg-2') }}
{% for field in form.membership %}
{{ field() }}
{% endfor %}
{% if form.membership.errors %}
{% for error in form.membership.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.c3l() }}
{{ form.submit(class_='btn btn-enn') }}

Field marked with * are required!

1: If you have decided to apply for the double membership, the membership fees are 150€/year for the regular membership and 70€/year for the student membership.

{% endblock %}