{% extends "base.html" %} {% block title %}Create Admin Account - PyRunner{% endblock %} {% block content %}

Create Admin Account

Set up your administrator account to get started

{% if form.errors %}
{% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %}
{% csrf_token %}
{{ form.email }} {% if form.email.errors %}

{{ form.email.errors.0 }}

{% endif %}
{{ form.password }} {% if form.password.help_text %}

{{ form.password.help_text }}

{% endif %} {% if form.password.errors %}

{{ form.password.errors.0 }}

{% endif %}
{{ form.password_confirm }} {% if form.password_confirm.errors %}

{{ form.password_confirm.errors.0 }}

{% endif %}

About the Admin Account

This will be the first user with full administrator privileges. You can invite additional users later from the settings panel.

{% endblock %}