The Class Management System is a web application built with Flask and SQLite that allows users to manage classes, teachers, and fee structures.
- User authentication: Users can register, log in, and log out.
- CRUD operations: Users can add, view, update, and delete classes, teachers, and fee structures.
- View fee structure: Users can view the fee structure for classes and teachers.
git clone https://github.com/your-username/class-management-system.git
cd class-management-system
python3 -m venv myenv
- On Unix/Linux/macOS:
source myenv/bin/activate
- On Windows:
myenv\Scripts\activate
pip install -r requirements.txt
- Start the Flask server:
python app.py
- Open a web browser and go to http://127.0.0.1:5000/ to access the application.
deactivate