This project is a simple CRUD web application built with React and Axios, connected to a MockAPI backend.
It allows users to register students for a diploma program and manage their records.
Features
Create : Add a new student with name, payment details, phone number, and diploma title.
Read : Display all registered students in a dynamic table.
Update : Edit student information and update records in the backend.
Delete :Remove student records from the database.
Form Handling : Controlled inputs with React state and form reset after submission.
API Integration : Uses Axios for sending HTTP requests to MockAPI.
Implementation
React Hooks : useState for form & table data, useEffect for fetching records on page load.
Axios : Handles all CRUD operations (GET, POST, PUT, DELETE).
MockAPI : Used as a quick backend to store and retrieve student data.
Bootstrap :Provides styling for form controls, buttons, and table layout.