├── .gitignore ├── Diagram.png ├── README.md ├── package.json ├── public ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── layouts ├── Dashboard.jsx ├── Footer.jsx ├── Navi.jsx ├── SignedIn.jsx └── SignedOut.jsx ├── logo.svg ├── pages ├── ChoosingSignInMethod.jsx ├── ChoosingSignUpMethod.jsx ├── Employers │ ├── EmployerDetailPage.jsx │ ├── EmployerList.jsx │ ├── EmployerSignUpPage.jsx │ └── JobAddPage.jsx ├── JobPositionList.jsx ├── JobSeekers │ ├── JobSeekerDetail.jsx │ ├── JobSeekerList.jsx │ └── JobSeekerSignUpPage.jsx ├── Jobs │ ├── JobDetailPage.jsx │ └── JobList.jsx ├── MainPage.jsx ├── SignInPage.jsx └── SystemUsers │ ├── JobConfirmationPanel.jsx │ └── SystemUserSignUpPage.jsx ├── reportWebVitals.js ├── services ├── ActivationPanelService.js ├── CityService.js ├── EmployerService.js ├── JobPositionService.js ├── JobSeekerService.js ├── JobService.js ├── WorkPlaceService.js └── WorkTimeService.js ├── setupTests.js └── store ├── configureStore.js └── rootReducer.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/Diagram.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/layouts/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/layouts/Dashboard.jsx -------------------------------------------------------------------------------- /src/layouts/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/layouts/Footer.jsx -------------------------------------------------------------------------------- /src/layouts/Navi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/layouts/Navi.jsx -------------------------------------------------------------------------------- /src/layouts/SignedIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/layouts/SignedIn.jsx -------------------------------------------------------------------------------- /src/layouts/SignedOut.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/layouts/SignedOut.jsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/ChoosingSignInMethod.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/ChoosingSignInMethod.jsx -------------------------------------------------------------------------------- /src/pages/ChoosingSignUpMethod.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/ChoosingSignUpMethod.jsx -------------------------------------------------------------------------------- /src/pages/Employers/EmployerDetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/Employers/EmployerDetailPage.jsx -------------------------------------------------------------------------------- /src/pages/Employers/EmployerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/Employers/EmployerList.jsx -------------------------------------------------------------------------------- /src/pages/Employers/EmployerSignUpPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/Employers/EmployerSignUpPage.jsx -------------------------------------------------------------------------------- /src/pages/Employers/JobAddPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/Employers/JobAddPage.jsx -------------------------------------------------------------------------------- /src/pages/JobPositionList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/JobPositionList.jsx -------------------------------------------------------------------------------- /src/pages/JobSeekers/JobSeekerDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/JobSeekers/JobSeekerDetail.jsx -------------------------------------------------------------------------------- /src/pages/JobSeekers/JobSeekerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/JobSeekers/JobSeekerList.jsx -------------------------------------------------------------------------------- /src/pages/JobSeekers/JobSeekerSignUpPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/JobSeekers/JobSeekerSignUpPage.jsx -------------------------------------------------------------------------------- /src/pages/Jobs/JobDetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/Jobs/JobDetailPage.jsx -------------------------------------------------------------------------------- /src/pages/Jobs/JobList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/Jobs/JobList.jsx -------------------------------------------------------------------------------- /src/pages/MainPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/MainPage.jsx -------------------------------------------------------------------------------- /src/pages/SignInPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/SignInPage.jsx -------------------------------------------------------------------------------- /src/pages/SystemUsers/JobConfirmationPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/SystemUsers/JobConfirmationPanel.jsx -------------------------------------------------------------------------------- /src/pages/SystemUsers/SystemUserSignUpPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/pages/SystemUsers/SystemUserSignUpPage.jsx -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/services/ActivationPanelService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/services/ActivationPanelService.js -------------------------------------------------------------------------------- /src/services/CityService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/services/CityService.js -------------------------------------------------------------------------------- /src/services/EmployerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/services/EmployerService.js -------------------------------------------------------------------------------- /src/services/JobPositionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/services/JobPositionService.js -------------------------------------------------------------------------------- /src/services/JobSeekerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/services/JobSeekerService.js -------------------------------------------------------------------------------- /src/services/JobService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/services/JobService.js -------------------------------------------------------------------------------- /src/services/WorkPlaceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/services/WorkPlaceService.js -------------------------------------------------------------------------------- /src/services/WorkTimeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/services/WorkTimeService.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/store/configureStore.js -------------------------------------------------------------------------------- /src/store/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPand-21/HRMS_Frontend/HEAD/src/store/rootReducer.js --------------------------------------------------------------------------------