{% extends "base.html" %} {% load i18n %} {% block title %}{{ block.super }} | {% trans "Join us" %}{% endblock %} {% block breadcrumb %}{{ block.super }} » {% trans "Join us" %}{% endblock %} {% block content_title %}
There are two ways to join: with an email and screen name or with an OpenID.
Enter information only for the type of sign up you want to do.
{% endblocktrans %}{% trans "Please correct errors below:" %}
{% if form.username.errors %}
{{ form.username.errors|join:", " }}
{% endif %}
{% if form.email.errors %}
{{ form.email.errors|join:", " }}
{% endif %}
{% if form.password2.errors %}
{{ form.password2.errors|join:", " }}
{% endif %}