{% extends "base.html" %} {% block title %}Installer Wizard{% endblock %} {% block content %}

Setup Wizard

Install and configure TG Auto Reply Pro

{% if step == 1 %}
{% elif step in [2, '2_otp', '2_2fa'] %}
{% elif step == 3 %}
{% elif step == 4 %}
{% endif %}
1. System Check 2. Telegram Config 3. Admin Setup 4. Finish
{% if step == 1 %}
Step 1: System Check

We need to check if your environment matches the execution specifications of TG Auto Reply Pro.

  • Python 3.12+ Environment
    Verifying compatible engine environment.
    Pass
  • Write Access Permission
    Config and Sessions directory write verification.
    {% if checks.write_config and checks.write_sessions %} Pass {% else %} Fail {% endif %}
  • SQLite Engine Support
    Validates database engine existence.
    {% if checks.sqlite %} Pass {% else %} Fail {% endif %}
{% if system_ready %} Next Step {% else %} {% endif %}
{% endif %} {% if step == 2 %}
Step 2: Telegram Setup

Input your Telegram API credentials. You can obtain these from my.telegram.org.

Must include country code (e.g. +880 for Bangladesh).
Back
{% endif %} {% if step == '2_otp' %}
Verify OTP Code

A confirmation code has been sent to your Telegram client or phone. Please enter it below.

Back
{% endif %} {% if step == '2_2fa' %}
2-Step Verification

Your Telegram account has 2-Step Verification enabled. Enter your Cloud Password below.

Back
{% endif %} {% if step == 3 %}
Step 3: Admin Account Creation

Set up your credentials to login to the Web Admin Panel dashboard.

Back
{% endif %} {% if step == 4 %}
Setup Successful!

Your configurations have been saved, database initialized, admin profile configured, and the Telegram listener daemon activated.

Security Tip: For security reasons, the system installation state has been locked. You will be redirected to the secure login screen.
{% endif %}
{% endblock %}