{% extends "base.html" %} {% load i18n fieldset_extras %} {% block title %}{% trans "Registration"%}{% endblock %} {% block teaser%}

{% trans "Registration"%}

{% blocktrans %}After you've provided your account data, you'll receive an email asking you to verify your email address. You have to click on the link in this verification email to confirm your email address, otherwise your can't login.{% endblocktrans %}
{% endblock %} {% block maincontent %}
{% csrf_token %}
{% trans "name"%} {% get_fieldset "gender, first_name, last_name, username" from form as form1 %} {% with form1 as form %}{% include "form.html" %}{% endwith %}
{% trans "login"%} {% get_fieldset "email, password1, password2, recaptcha" from form as form1 %} {% with form1 as form %}{% include "form.html" %}{% endwith %}
{% trans "Membership"%} {% get_fieldset "membership, birthday, street_name, post_code, city, telephone, website" from form as form2 %} {% with form2 as form %}{% include "form.html" %}{% endwith %}

{% endblock %}