{% extends base_template %} {% block title %}Register an account{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Register an account

{% if message %}

{{ message }}

{% endif %} {% if openid %}

Your OpenID {{ openid }} will be associated with this account. (no thanks)

{% else %}

Start with your OpenID

{% endif %}

{% if not openid %}OR enter{% else %}Enter{% endif %} your details

{% with form.username as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %} {% with form.first_name as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %} {% with form.last_name as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %} {% with form.email as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %} {% if openid %}

Since you are using OpenID you don't need to set a password. You can set one later if you want.

{% else %} {% with form.password as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %} {% with form.password2 as field %}{% include "django_openid/_register_form_field.html" %}{% endwith %} {% endif %}

{% endblock %}