{% extends "base.html" %} {% block title %}Setup Wizard - DocuElevate{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

DocuElevate Setup Wizard

Welcome! Let's configure your system in just a few steps.

Step {{ current_step }} of {{ max_step }} {{ progress_percent }}% Complete
{% for step_num in range(1, max_step + 1) %}
{% if step_num < current_step %} {% else %} {{ step_num }} {% endif %}
{% if step_num == 1 %}Infrastructure{% elif step_num == 2 %}Security{% elif step_num == 3 %}AI Services{% endif %}
{% endfor %}

{{ step_category }}

Configure essential settings for this category

{% if request.query_params.get('error') == 'save_failed' %} {% endif %}
{% for setting in settings %}

{{ setting.description }}

{% if setting.key == 'session_secret' %}
{% else %} {% endif %} {% if setting.key == 'admin_password' %}

Important: Choose a strong password. This cannot be recovered if lost.

{% elif setting.sensitive %}

This value will be encrypted at rest in the database.

{% endif %}
{% endfor %}
{% if current_step == 1 %} Skip setup (advanced users) {% endif %}
{% if current_step > 1 %} Previous {% endif %}

All settings can be changed later in the Settings page.

Fields marked with * are required.

{% endblock %}