├── Backend ├── .env.example ├── .gitignore ├── middleware │ ├── auth.js │ ├── checkpermission.js │ ├── multer.js │ └── updateFilters.js ├── models │ ├── Company.js │ ├── FilterOption.js │ ├── Opp.js │ ├── Permission.js │ ├── Registration.js │ └── User.js ├── package-lock.json ├── package.json ├── routes │ ├── Opp_add.js │ ├── Registration.js │ ├── auth.js │ ├── postjob.js │ └── profile.js └── server.js ├── Frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── Adidas-Logo-1949.jpg │ ├── Clndr.png │ ├── adobe.png │ ├── amd.png │ ├── coll.png │ ├── edit-profile.png │ ├── email.png │ ├── favicon.ico │ ├── index.html │ ├── info.png │ ├── job-front.jpg │ ├── l_ocation.png │ ├── location.png │ ├── logo192.png │ ├── logout.png │ ├── magic-tool.png │ ├── manifest.json │ ├── profile.png │ ├── regi.png │ ├── robots.txt │ ├── salary.png │ └── work.png └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ ├── Auth │ │ ├── ForgotPassword.js │ │ ├── Login.css │ │ ├── Login.js │ │ └── ResetPassword.js │ ├── Browse │ │ ├── Browse.css │ │ ├── Browse.js │ │ ├── BrowseDetails.css │ │ ├── BrowseDetails.js │ │ ├── BrowseList.css │ │ ├── BrowseList.js │ │ ├── FilterBar.css │ │ └── FilterBar.js │ ├── Footer │ │ ├── Footer.css │ │ └── Footer.js │ ├── FrontPage │ │ ├── FrontPage.css │ │ ├── FrontPage.js │ │ ├── howitworks.css │ │ └── howitworks.js │ ├── Milestones │ │ ├── Milestones.js │ │ ├── Pop.css │ │ ├── Popular.js │ │ └── mlstn.css │ ├── Navbar │ │ ├── Dropdown.css │ │ ├── Dropdown.js │ │ ├── Navbar.css │ │ └── Navbar.js │ ├── Pages │ │ ├── About │ │ │ ├── About.css │ │ │ └── About.js │ │ ├── Contact │ │ │ ├── Contact.css │ │ │ └── Contact.js │ │ ├── Profile │ │ │ ├── Profile.css │ │ │ └── Profile.js │ │ └── Support │ │ │ ├── Accordion.css │ │ │ ├── Accordion.js │ │ │ ├── Support.css │ │ │ └── Support.js │ ├── Postjob │ │ ├── Postjobform.css │ │ └── Postjobform.js │ └── Register │ │ ├── CompanyRegistration.js │ │ ├── CompanyRegistrations.css │ │ ├── MyRegistrations.js │ │ ├── Myreg.css │ │ ├── Register.css │ │ └── Register.js │ ├── context │ └── UserContext.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ └── setupTests.js └── README.md /Backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/.env.example -------------------------------------------------------------------------------- /Backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/.gitignore -------------------------------------------------------------------------------- /Backend/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/middleware/auth.js -------------------------------------------------------------------------------- /Backend/middleware/checkpermission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/middleware/checkpermission.js -------------------------------------------------------------------------------- /Backend/middleware/multer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/middleware/multer.js -------------------------------------------------------------------------------- /Backend/middleware/updateFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/middleware/updateFilters.js -------------------------------------------------------------------------------- /Backend/models/Company.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/models/Company.js -------------------------------------------------------------------------------- /Backend/models/FilterOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/models/FilterOption.js -------------------------------------------------------------------------------- /Backend/models/Opp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/models/Opp.js -------------------------------------------------------------------------------- /Backend/models/Permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/models/Permission.js -------------------------------------------------------------------------------- /Backend/models/Registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/models/Registration.js -------------------------------------------------------------------------------- /Backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/models/User.js -------------------------------------------------------------------------------- /Backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/package-lock.json -------------------------------------------------------------------------------- /Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/package.json -------------------------------------------------------------------------------- /Backend/routes/Opp_add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/routes/Opp_add.js -------------------------------------------------------------------------------- /Backend/routes/Registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/routes/Registration.js -------------------------------------------------------------------------------- /Backend/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/routes/auth.js -------------------------------------------------------------------------------- /Backend/routes/postjob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/routes/postjob.js -------------------------------------------------------------------------------- /Backend/routes/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/routes/profile.js -------------------------------------------------------------------------------- /Backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Backend/server.js -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/.gitignore -------------------------------------------------------------------------------- /Frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/README.md -------------------------------------------------------------------------------- /Frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/package-lock.json -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/public/Adidas-Logo-1949.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/Adidas-Logo-1949.jpg -------------------------------------------------------------------------------- /Frontend/public/Clndr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/Clndr.png -------------------------------------------------------------------------------- /Frontend/public/adobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/adobe.png -------------------------------------------------------------------------------- /Frontend/public/amd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/amd.png -------------------------------------------------------------------------------- /Frontend/public/coll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/coll.png -------------------------------------------------------------------------------- /Frontend/public/edit-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/edit-profile.png -------------------------------------------------------------------------------- /Frontend/public/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/email.png -------------------------------------------------------------------------------- /Frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/favicon.ico -------------------------------------------------------------------------------- /Frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/index.html -------------------------------------------------------------------------------- /Frontend/public/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/info.png -------------------------------------------------------------------------------- /Frontend/public/job-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/job-front.jpg -------------------------------------------------------------------------------- /Frontend/public/l_ocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/l_ocation.png -------------------------------------------------------------------------------- /Frontend/public/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/location.png -------------------------------------------------------------------------------- /Frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/logo192.png -------------------------------------------------------------------------------- /Frontend/public/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/logout.png -------------------------------------------------------------------------------- /Frontend/public/magic-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/magic-tool.png -------------------------------------------------------------------------------- /Frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/manifest.json -------------------------------------------------------------------------------- /Frontend/public/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/profile.png -------------------------------------------------------------------------------- /Frontend/public/regi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/regi.png -------------------------------------------------------------------------------- /Frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/robots.txt -------------------------------------------------------------------------------- /Frontend/public/salary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/salary.png -------------------------------------------------------------------------------- /Frontend/public/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/public/work.png -------------------------------------------------------------------------------- /Frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/App.css -------------------------------------------------------------------------------- /Frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/App.js -------------------------------------------------------------------------------- /Frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/App.test.js -------------------------------------------------------------------------------- /Frontend/src/Components/Auth/ForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Auth/ForgotPassword.js -------------------------------------------------------------------------------- /Frontend/src/Components/Auth/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Auth/Login.css -------------------------------------------------------------------------------- /Frontend/src/Components/Auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Auth/Login.js -------------------------------------------------------------------------------- /Frontend/src/Components/Auth/ResetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Auth/ResetPassword.js -------------------------------------------------------------------------------- /Frontend/src/Components/Browse/Browse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Browse/Browse.css -------------------------------------------------------------------------------- /Frontend/src/Components/Browse/Browse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Browse/Browse.js -------------------------------------------------------------------------------- /Frontend/src/Components/Browse/BrowseDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Browse/BrowseDetails.css -------------------------------------------------------------------------------- /Frontend/src/Components/Browse/BrowseDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Browse/BrowseDetails.js -------------------------------------------------------------------------------- /Frontend/src/Components/Browse/BrowseList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Browse/BrowseList.css -------------------------------------------------------------------------------- /Frontend/src/Components/Browse/BrowseList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Browse/BrowseList.js -------------------------------------------------------------------------------- /Frontend/src/Components/Browse/FilterBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Browse/FilterBar.css -------------------------------------------------------------------------------- /Frontend/src/Components/Browse/FilterBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Browse/FilterBar.js -------------------------------------------------------------------------------- /Frontend/src/Components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Footer/Footer.css -------------------------------------------------------------------------------- /Frontend/src/Components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Footer/Footer.js -------------------------------------------------------------------------------- /Frontend/src/Components/FrontPage/FrontPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/FrontPage/FrontPage.css -------------------------------------------------------------------------------- /Frontend/src/Components/FrontPage/FrontPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/FrontPage/FrontPage.js -------------------------------------------------------------------------------- /Frontend/src/Components/FrontPage/howitworks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/FrontPage/howitworks.css -------------------------------------------------------------------------------- /Frontend/src/Components/FrontPage/howitworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/FrontPage/howitworks.js -------------------------------------------------------------------------------- /Frontend/src/Components/Milestones/Milestones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Milestones/Milestones.js -------------------------------------------------------------------------------- /Frontend/src/Components/Milestones/Pop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Milestones/Pop.css -------------------------------------------------------------------------------- /Frontend/src/Components/Milestones/Popular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Milestones/Popular.js -------------------------------------------------------------------------------- /Frontend/src/Components/Milestones/mlstn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Milestones/mlstn.css -------------------------------------------------------------------------------- /Frontend/src/Components/Navbar/Dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Navbar/Dropdown.css -------------------------------------------------------------------------------- /Frontend/src/Components/Navbar/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Navbar/Dropdown.js -------------------------------------------------------------------------------- /Frontend/src/Components/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Navbar/Navbar.css -------------------------------------------------------------------------------- /Frontend/src/Components/Navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Navbar/Navbar.js -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/About/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/About/About.css -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/About/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/About/About.js -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/Contact/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/Contact/Contact.css -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/Contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/Contact/Contact.js -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/Profile/Profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/Profile/Profile.css -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/Profile/Profile.js -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/Support/Accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/Support/Accordion.css -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/Support/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/Support/Accordion.js -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/Support/Support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/Support/Support.css -------------------------------------------------------------------------------- /Frontend/src/Components/Pages/Support/Support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Pages/Support/Support.js -------------------------------------------------------------------------------- /Frontend/src/Components/Postjob/Postjobform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Postjob/Postjobform.css -------------------------------------------------------------------------------- /Frontend/src/Components/Postjob/Postjobform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Postjob/Postjobform.js -------------------------------------------------------------------------------- /Frontend/src/Components/Register/CompanyRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Register/CompanyRegistration.js -------------------------------------------------------------------------------- /Frontend/src/Components/Register/CompanyRegistrations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Register/CompanyRegistrations.css -------------------------------------------------------------------------------- /Frontend/src/Components/Register/MyRegistrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Register/MyRegistrations.js -------------------------------------------------------------------------------- /Frontend/src/Components/Register/Myreg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Register/Myreg.css -------------------------------------------------------------------------------- /Frontend/src/Components/Register/Register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Register/Register.css -------------------------------------------------------------------------------- /Frontend/src/Components/Register/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/Components/Register/Register.js -------------------------------------------------------------------------------- /Frontend/src/context/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/context/UserContext.js -------------------------------------------------------------------------------- /Frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/index.css -------------------------------------------------------------------------------- /Frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/index.js -------------------------------------------------------------------------------- /Frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /Frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/Frontend/src/setupTests.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aakash-1801/Jobsearch/HEAD/README.md --------------------------------------------------------------------------------