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

Profil bearbeiten

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

{{form.email.errors.as_text}}

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

{{form.current_password.errors.as_text}}

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

{{form.new_password1.errors.as_text}}

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

{{form.new_password2.errors.as_text}}

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

{{form.twitter.errors.as_text}}

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

{{form.github.errors.as_text}}

{% endblock %}