{% extends "impala/base_shared.html" %} {% from 'includes/forms.html' import required %} {% block title %}{{ page_title(_('New User Registration')) }}{% endblock %} {% block js %}{% include("amo/recaptcha_js.html") %}{% endblock %} {% block bodyclass %}gutter register{% endblock %} {% block content %}

{{ _('Why register?') }}

{% trans legal="http://www.mozilla.com/about/legal.html", privacy="http://www.mozilla.com/privacy-policy.html" %}

Registration on AMO is not required if you simply want to download and install public add-ons.

You only need to register if:

Upon successful registration, you will be sent a confirmation email to the address you provided. Please follow the instructions there to confirm your account.

If you like, you can read our Legal Notices and Privacy Policy.

{% endtrans %}
{# .secondary #}
{% if form %}

{{ _('Register') }}

{{ csrf() }}
  • {{ form.username }} {{ form.username.errors }}
  • {{ form.display_name }} {{ form.display_name.errors }}
  • {{ form.homepage }} {{ form.homepage.errors }}
  • {{ form.email }} {{ form.email.errors }}
  • {{ form.emailhidden.errors }}
  • {{ form.password }} {{ form.password.errors }}
  • {{ form.password2 }} {{ form.password2.errors }}
  • {% if settings.RECAPTCHA_PRIVATE_KEY %} {{ recaptcha(form) }} {% else %}

    Welcome Robots, ReCaptcha has been disabled for your convenience. Spam at Wil.

    {% endif %}
{% endif %}
{# .primary #} {% endblock content %}