{# vim: set ts=2 et sts=2 sw=2: #} {% extends "users/base.html" %} {% from "layout/errorlist.html" import errorlist %} {% set title = _('Register') %} {% set classes = 'register' %} {% set use_browserid = LANG|lower in config.BROWSERID_LOCALES.split(' ') %} {% block content %}

{{ _('Register') }}

{% trans %} You can access everything on the MDN website even without an account, but when you join you'll be able to edit docs, submit demos, and have your own profile page. {% endtrans %}

{{ csrf() }} {{ errorlist(form) }}
    {% for field in form %}
  • {{ field|label_with_help }} {{ field|safe }}
  • {% endfor %}
{% endblock %} {% block js %} {% if use_browserid %} {% endif %} {% endblock %}