This project serves as a front-end for my payroll REST API. See payrollchallenge for more details.
- Users may sign in or sign up via a POST request to the backend API's '/login' or '/register' endpoints
- Users can upload a form containing timekeeping records via a POST request to the '/upload' endpoint
- Users can fetch all of their payroll data via a GET request to the backend's '/retrieve/' endpoint
You should have the backend installed and running on your local computer. Visit the link in the instructions to download the source code.
- Clone the repository
git clone https://github.com/cfaqiri/payroll-frontend.git
- Install the dependencies
npm install
- Run the development surver
npm start
- Ensure that the backend API has been properly installed and the development server is running.