{% extends "base.html" %} {% block title %}DosVault - Setup{% endblock %} {% block content %}

DosVault Setup

{% if status == "initializing" %}

{{ message }}

This may take a few moments...

{% elif status == "error" %}

{{ message }}

{% if setup_commands %}

Manual Setup Instructions

Please run the following commands in your terminal to set up DosVault:

{% for command in setup_commands %}
{{ command }}
{% endfor %}

Note: After running these commands, refresh this page to continue.

{% endif %} {% else %}

Setup Complete!

DosVault has been initialized successfully.

{% endif %}
{% if status == "initializing" or status == "error" %}

Default Admin Credentials

Username: admin
Password: admin123

Important: Please change these credentials after your first login!

{% endif %}
{% endblock %}