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

Registrieren

{% if user.is_authenticated %} You are alerady logged in, why in the world would you want to sign up ? {% else %} {% include 'form.html' with button_text='sign up' %} {% endif %}
{% endblock %}