{% extends "base_registration.html" %} {% block content %}

Create Superuser for the BeetleboxCI Application

{% csrf_token %}

{{ form.email_address }} {% for error in form.email_address.errors %}

{{ error }}

{% endfor %}

{{ form.company }} {% for error in form.company.errors %}

{{ error }}

{% endfor %}

{{ form.password1 }} {% for error in form.password1.errors %}

{{ error }}

{% endfor %}

{{ form.password2 }} {% for error in form.password2.errors %}

{{ error }}

{% endfor %}

{{ form.agree }} I agree to the Privacy Policy and Terms and Conditions

{% for error in form.agree.errors %}

{{ error }}

{% endfor %}
{% endblock %}