This repository contains a simple dashboard website for a logistics firm. The app is built using Flask and provides a basic overview of key shipment metrics and a sample chart. A basic login form is included to demonstrate user authentication.
- Displays total shipments processed, shipments currently in transit, and average delivery time.
- Bar chart showing sample data of shipments processed throughout the week.
- Responsive layout using plain CSS.
- Login page with simple credential check.
- Install dependencies:
pip install flask
- Start the development server:
python app.py
- Open your browser and navigate to
http://127.0.0.1:5000/to view the dashboard. Click the Login button to sign in with usernameadminand passwordpassword123.
.
├── app.py # Flask application
├── templates/
│ ├── index.html # Dashboard template
│ └── login.html # Login template
└── static/
└── style.css # Basic styling
This is an initial prototype and can be expanded with real data integrations and authentication as needed.
