{% extends "base.html" %} {% block title %}Registrieren{% endblock %} {% block content %}

Registrieren

{% if user.is_authenticated %} Was zur Hölle machst du bitte hier?
Du bist eingeloggt und willst du dich registrieren.
Geh heim du bist besoffen! {% else %}
{% csrf_token %}
{% if form.username.errors %} {% endif %}

{{form.username.errors.as_text}}

{% if form.email.errors %} {% endif %}

{{form.email.errors.as_text}}

{% if form.password1.errors %} {% endif %}

{{form.password1.errors.as_text}}

{% if form.password2.errors %} {% endif %}

{{form.password2.errors.as_text}}

{% if form.twitter.errors %} {% endif %}

{{form.twitter.errors.as_text}}

{% if form.github.errors %} {% endif %}

{{form.github.errors.as_text}}

{% endif %}
{% endblock %}