This Employee Management App is a simple web application built using Python's Django framework, HTML, and Bootstrap CDN. It allows users to perform Create, Read, Update, Delete operations on employee records.
- Create new employee records with details such as name, email, and department.
- Read and view existing employee records.
- Update employee information.
- Delete employee records.
- Python's virtual environment (venv) for managing dependencies.
- Django framework for building the web application.
- HTML for creating the frontend user interface.
- Bootstrap CDN for styling and responsive design.
- Clone the repository:
git clone https://github.com/Vaibhavkale123/Employee-Management-App.git
- Install the required dependencies:
pip install -r requirements.txt
- Run the Django development server:
python manage.py runserver
- Access the application in your web browser at
http://localhost:8000
.
- Navigate to the homepage to view a list of employees.
- Click on "Add Employee" to create a new employee record.
- Click on "Update" button to view their details and make updates.
- To delete an employee record, click on the "Delete" button next to the employee.