{% extends "speakers/base.html" %} {% load uni_form_tags %} {% block body %} {% if not request.user.is_authenticated %} {% if login_form %}

Log In To Your Existing Account

{% csrf_token %}
{{ login_form|as_uni_form }}

- or -

{% endif %}

Create An Account and Speaker Profile

You've been attached as an additional speaker to a talk proposal for PyCon 2011. Create yourself an account and speaker profile by filling out the form below. You will be able to see the proposal(s) you've been invited to once signed up.

{% csrf_token %}
{{ signup_form|as_uni_form }}
{{ speaker_form|as_uni_form }}
{% else %}

Create Your Speaker Profile

You were attached as an additional speaker to a talk proposal for PyCon 2011, but have not created a speaker profile. Create your speaker profile below.

{% csrf_token %}
{{ speaker_form|as_uni_form }}
{% endif %} {% endblock %}