{% extends "base_firstboot.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load bootstrap %} {% load i18n %} {% load static %} {% block content %}

{% trans "Administrator Account" %}

{% if not admin_users %}

{% blocktrans trimmed %} Choose a username and password to access this web interface. The password can be changed later. This user will be granted administrative privileges. Other users can be added later. {% endblocktrans %}

{% csrf_token %} {{ form|bootstrap }}
{% else %}

{% blocktrans trimmed %} The following administrator accounts exist in the system. {% endblocktrans %}

{% blocktrans trimmed %} Delete these accounts from command line and refresh the page to create an account that is usable with {{ box_name }}. On the command line run the command 'echo "{password}" | /usr/share/plinth/actions/users remove-user {username}'. If an account is already usable with {{ box_name }}, skip this step. {% endblocktrans %}

{% csrf_token %}
{% endif %} {% endblock %}