{% extends "base.html" %} {% load i18n %} {% block title %}{% spaceless %}{% trans "Signup" %}{% endspaceless %}{% endblock %} {% block content %}

{% trans "Signup" %}

{% trans "We support two types of user registration: conventional username/password, and" %} {% trans "the OpenID method" %}.

{% if form.errors %}

{% trans "Sorry, looks like we have some errors" %}

{% endif %}
{% trans "Conventional registration" %}

{{ form.username }}

{{ form.email }}

{{ form.password1 }}

{{ form.password2 }}


{% trans "Register with your OpenID" %}

{{ form2.openid_url }}
{% endblock %}