Flask Login System - Quick Help

Why GitHub Alone Won't Work

GitHub can only host static websites (HTML, CSS, JS). This Flask application needs:

Two Ways to Run This Application

1. Local Machine (Easiest)

  1. Install Python
  2. Open terminal in project folder
  3. Run these commands:
    # Create virtual environment python -m venv venv # Activate it (Windows) venv\Scripts\activate # Install requirements pip install -r requirements.txt # Run the app python app.py
  4. Open browser and go to: http://localhost:5000

2. Online Deployment (For Website)

You need a hosting service that supports Python. Free options:

Important Note

For testing and learning, use the local machine method. It's free and works perfectly for development.