A Flask site that has every basic input, button, etc that everyone uses
git clone <repository-url>
cd just-Flask
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
pip install -r requirements.txt
python app.py
http://localhost:8080
just-Flask/
├── app.py # Main application file
├── requirements.txt # Python dependencies
├── static/
│ └── style.css # Stylesheet
└── templates/
├── index.html # Home page
├── page2.html # Second page
├── page3.html # Third page
└── logo.html # Logo display page
Feel free to submit issues and enhancement requests.