╔══════════════════════════════════════════════════════════════════╗
║            MAINTENANCE MODE - QUICK REFERENCE                     ║
╚══════════════════════════════════════════════════════════════════╝

🔧 ENABLE MAINTENANCE MODE
─────────────────────────────────────────────────────────────────────
  Method 1 (Web):    Visit: http://your-domain/maintenance-on.php
  Method 2 (CLI):    Run: maintenance.bat on
  Method 3 (Manual): Create file: .maintenance

✅ DISABLE MAINTENANCE MODE
─────────────────────────────────────────────────────────────────────
  Method 1 (Web):    Visit: http://your-domain/maintenance-off.php
  Method 2 (CLI):    Run: maintenance.bat off
  Method 3 (Manual): Delete file: .maintenance

📊 CHECK STATUS
─────────────────────────────────────────────────────────────────────
  Command Line:      maintenance.bat status
  Manual Check:      Look for .maintenance file in project root

🔑 KEY POINTS
─────────────────────────────────────────────────────────────────────
  • When ON: Users see maintenance page (auto-refreshes every 30s)
  • Admins who enable it can still access the system (bypass mode)
  • Maintenance page: http://your-domain/maintenance.html
  • Custom messages: Edit .maintenance file or use web interface

📁 FILES CREATED
─────────────────────────────────────────────────────────────────────
  includes/maintenance.php     - Core maintenance logic
  maintenance.html             - Maintenance page shown to users
  maintenance-on.php           - Web interface to enable
  maintenance-off.php          - Web interface to disable
  maintenance.bat              - Command-line toggle (Windows)
  .maintenance                 - Flag file (created when enabled)

🛡️ SECURITY (OPTIONAL)
─────────────────────────────────────────────────────────────────────
  To require admin login for toggle scripts, uncomment the
  authentication check in maintenance-on.php and maintenance-off.php

📖 FULL DOCUMENTATION
─────────────────────────────────────────────────────────────────────
  See: MAINTENANCE_MODE.md

═══════════════════════════════════════════════════════════════════

