{% extends "base_pico.html" %} {% load static i18n %} {% block title %}{% trans "Initial setup — Create admin" %}{% endblock %} {% block content %}

{% trans "Create initial administrator" %}

{% trans "This page is only available when there are no admin users in the database." %}

{% trans "After creating the account you will be logged in and redirected to the admin." %}

{% csrf_token %} {% if form.non_field_errors %} {% endif %} {{ form.username }} {{ form.email }} {{ form.first_name }} {{ form.last_name }} {{ form.password1 }} {{ form.password2 }}

{% trans "Cancel" %}

{% endblock %}