{% extends 'core/base.html' %} {% block title %}Initial Setup | Killian{% endblock %} {% block content %}
1. Administrator 2. Two-Factor Authentication
{% if setup_step == 'administrator' %}
First Run

Create the Initial Administrator

This account receives Killian administrator and recovery-level access. Create it before exposing the installation to other users.

One-time setup After setup is completed, this page is no longer available. Additional accounts are created from Administration inside Killian.
{% csrf_token %} {{ form.non_field_errors }} {{ form.username }} {{ form.username.errors }} {{ form.email }} {{ form.email.errors }} {{ form.password1 }} {{ form.password1.errors }} {% if form.password1.help_text %}
{{ form.password1.help_text|safe }}
{% endif %} {{ form.password2 }} {{ form.password2.errors }}
{% elif setup_step == 'mfa' %}
Security Setup

Protect Killian with Two-Factor Authentication

Two-factor authentication is strongly recommended for a system that may contain credentials and infrastructure documentation.

Authenticator enrollment QR code

Manual key: {{ secret }}

{% csrf_token %}
or

NOT RECOMMENDED

Disable Two-Factor Authentication?

NOT RECOMMENDED Continuing will disable Killian's global 2FA enforcement and global credential-reveal 2FA requirement. Accounts will be able to sign in without an authenticator until an administrator enables 2FA from Administration.

Passwords alone provide less protection for sensitive MSP documentation. Enable 2FA unless you have a specific reason not to use it.

{% csrf_token %}
{% endif %}
{% endblock %} {% block scripts %} {% if setup_step == 'mfa' %}{% endif %} {% endblock %}