{% extends "registration/base.html" %} {% block title %}Sign up{% endblock %} {% block content %}
Sign up {% if form.non_field_errors %} {{ form.non_field_errors.as_ul }} {% endif %}
  1. {{ form.username }} {% if form.username.errors %} {{ form.username.errors.as_text }} {% endif %}
  2. {{ form.email }} {% if form.email.errors %} {{ form.email.errors.as_text }} {% endif %}
  3. {{ form.password1 }} {% if form.password1.errors %} {{ form.password1.errors.as_text }} {% endif %}
  4. {{ form.password2 }} {% if form.password2.errors %} {{ form.password2.errors.as_text }} {% endif %}

Sign up to submit or vote on presentations. Back to the home page.

{% endblock %}