{% extends "base.html" %} {% block title %}Register{% endblock %} {% block content %}

New User Registration

Welcome, in order to register you must have a valid email address, we also request that members who join do so in order to participate in the group. It's recomended that everyone have a launchpad account and having signed the Code of Conduct with that account. It's useful but not required to also have a valid GPG Public Key for signing, be a member of the ubuntu forums and be signed up to the mailing list.

{% if form.errors %}

Please correct the errors below:

{% endif %}
{% if form.username.errors %}{% endif %} {% if form.email.errors %}{% endif %} {% if form.password1.errors %}{% endif %} {% if form.password2.errors %}{% endif %} {% if form.tos.errors %}{% endif %}
{{ form.username.errors|join:", " }}
{{ form.username }}
{{ form.email.errors|join:", " }}
{{ form.email }}
{{ form.password1.errors|join:", " }}
{{ form.password1 }}
{{ form.password2.errors|join:", " }}
{{ form.password2 }}
{{ form.tos.errors|join:", " }}
I have signed up to the Code of Conduct {{ form.tos }}
{% endblock %} {% block sidebar %}

Fill out the form to the left (all fields are required), and your account will be created; you'll be sent an email with instructions on how to finish your registration.

{% endblock %}