{% extends 'base.html' %} {% load typogrify_tags utils_tags zebra_tags %} {% block bodyclass %}NB-static NB-static-oauth NB-static-login{% endblock %} {% block extra_head_js %} {% include_stylesheets "common" %} {% endblock %} {% block title %}Create an Account{% endblock %} {% block content %}
Create an Account
{% if form.errors %} {% if form.errors.username %}

{{ form.errors.username.as_text }}

{% else %}{% if form.errors.email %}

{{ form.errors.email.as_text }}

{% else %}

{{ form.non_field_errors.as_text }}

{% endif %}{% endif %} {% else %}{% if next %}

Please create an account to continue.

{% else %}{% if recaptcha_error %}

{{ recaptcha_error }}

{% endif %}{% endif %}{% endif %} {% csrf_token %}
{{ form.username.label_tag }}
{{ form.username }}
{{ form.password.label_tag }}
{{ form.password }}
{{ form.email.label_tag }}
{{ form.email }}

Login to your account

{% endblock %}