├── src ├── Components │ ├── RecruiterLogin │ │ ├── RecLogin.module.css │ │ └── RecruiterLogin.jsx │ ├── ChatBot │ │ ├── send.png │ │ ├── Chatbox.png │ │ ├── ChatBot.module.css │ │ └── ChatBot.jsx │ ├── Popouts │ │ ├── dog.jpg │ │ ├── error.png │ │ └── LoginFail.jsx │ ├── LogIn │ │ ├── images │ │ │ ├── fb.png │ │ │ ├── ld.png │ │ │ └── google1.png │ │ ├── SocialFollow.js │ │ ├── Login.module.css │ │ └── Login.jsx │ ├── JobPost │ │ ├── JobPost.jsx │ │ ├── JobPost.module.css │ │ └── JobPostInput.jsx │ ├── FireAuth │ │ ├── FireLogin.jsx │ │ └── auth.js │ ├── Home │ │ ├── PageNotFound.jsx │ │ ├── Why.jsx │ │ ├── Course.jsx │ │ ├── SearchBar.jsx │ │ ├── CoolPlaces.jsx │ │ ├── TotalCompany.jsx │ │ ├── Premium.jsx │ │ ├── Resume.jsx │ │ ├── Home.jsx │ │ ├── GetJob.jsx │ │ ├── AdvanceSearch1.jsx │ │ ├── AdvanceSearch.jsx │ │ ├── AdvancedComponent.jsx │ │ ├── Footer.jsx │ │ └── home.module.css │ ├── CreateJobAlert │ │ ├── JobAlert.jsx │ │ ├── JobAlertFooter.jsx │ │ ├── JobAlertFAQ.jsx │ │ ├── JobAlert.module.css │ │ └── JobAlertInput.jsx │ ├── Register │ │ ├── Regifooter.jsx │ │ └── Register.module.css │ ├── JobSearch │ │ ├── JobList.jsx │ │ └── JobSearch.jsx │ ├── JobDescription │ │ ├── Tabs.module.css │ │ └── JobDescriptionSidebar.jsx │ ├── Modal │ │ └── Modal.jsx │ ├── Navbar │ │ ├── NavBar.module.css │ │ ├── AfterLoginNav.jsx │ │ └── NavBar.jsx │ └── RecruiterDash │ │ ├── Dashboard.module.css │ │ └── RecruiterDashboard.jsx ├── Redux │ ├── Register │ │ ├── actiontype.js │ │ ├── regireducer.js │ │ └── action.js │ ├── Login │ │ ├── actiontype.js │ │ ├── action.js │ │ └── loginreducer.js │ ├── RecLogin │ │ ├── actionType.js │ │ ├── RecLoginReducer.js │ │ └── action.js │ ├── RecruiterDash │ │ ├── actionType.js │ │ ├── action.js │ │ └── RecruiterDasReducer.js │ └── store.js ├── App.js ├── setupTests.js ├── App.test.js ├── index.css ├── reportWebVitals.js ├── Routes │ ├── PrivateRoutes.jsx │ └── Routes.jsx ├── index.js └── database │ └── db.json ├── public ├── robots.txt ├── favicon.ico ├── logo192.png ├── logo512.png ├── Snapshots │ ├── doc.png │ ├── fb.png │ ├── ld.png │ ├── man.png │ ├── logo1.png │ ├── regi.png │ ├── search.png │ ├── google1.png │ ├── afterLogin.jpg │ ├── jobDetails.jpg │ ├── landingPage.jpg │ ├── loginPage.jpg │ ├── advanceSearch.jpg │ ├── registration │ │ ├── non.png │ │ ├── male.png │ │ ├── female.png │ │ └── prefer.png │ ├── searchByCities.jpg │ └── recuriterDasboard.jpg ├── manifest.json └── index.html ├── .gitignore ├── package.json └── README.md /src/Components/RecruiterLogin/RecLogin.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/Snapshots/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/doc.png -------------------------------------------------------------------------------- /public/Snapshots/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/fb.png -------------------------------------------------------------------------------- /public/Snapshots/ld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/ld.png -------------------------------------------------------------------------------- /public/Snapshots/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/man.png -------------------------------------------------------------------------------- /public/Snapshots/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/logo1.png -------------------------------------------------------------------------------- /public/Snapshots/regi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/regi.png -------------------------------------------------------------------------------- /public/Snapshots/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/search.png -------------------------------------------------------------------------------- /public/Snapshots/google1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/google1.png -------------------------------------------------------------------------------- /public/Snapshots/afterLogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/afterLogin.jpg -------------------------------------------------------------------------------- /public/Snapshots/jobDetails.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/jobDetails.jpg -------------------------------------------------------------------------------- /public/Snapshots/landingPage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/landingPage.jpg -------------------------------------------------------------------------------- /public/Snapshots/loginPage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/loginPage.jpg -------------------------------------------------------------------------------- /src/Components/ChatBot/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/src/Components/ChatBot/send.png -------------------------------------------------------------------------------- /src/Components/Popouts/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/src/Components/Popouts/dog.jpg -------------------------------------------------------------------------------- /src/Components/Popouts/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/src/Components/Popouts/error.png -------------------------------------------------------------------------------- /public/Snapshots/advanceSearch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/advanceSearch.jpg -------------------------------------------------------------------------------- /src/Components/ChatBot/Chatbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/src/Components/ChatBot/Chatbox.png -------------------------------------------------------------------------------- /src/Components/LogIn/images/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/src/Components/LogIn/images/fb.png -------------------------------------------------------------------------------- /src/Components/LogIn/images/ld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/src/Components/LogIn/images/ld.png -------------------------------------------------------------------------------- /public/Snapshots/registration/non.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/registration/non.png -------------------------------------------------------------------------------- /public/Snapshots/searchByCities.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/searchByCities.jpg -------------------------------------------------------------------------------- /public/Snapshots/recuriterDasboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/recuriterDasboard.jpg -------------------------------------------------------------------------------- /public/Snapshots/registration/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/registration/male.png -------------------------------------------------------------------------------- /src/Components/LogIn/images/google1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/src/Components/LogIn/images/google1.png -------------------------------------------------------------------------------- /public/Snapshots/registration/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/registration/female.png -------------------------------------------------------------------------------- /public/Snapshots/registration/prefer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubhamsharma585/Shine-masai/HEAD/public/Snapshots/registration/prefer.png -------------------------------------------------------------------------------- /src/Redux/Register/actiontype.js: -------------------------------------------------------------------------------- 1 | 2 | //register 3 | export const REGISTER_REQUEST = "REGISTER_REQUEST" 4 | export const REGISTER_SUCCESS = "REGISTER_SUCCESS" 5 | -------------------------------------------------------------------------------- /src/Redux/Login/actiontype.js: -------------------------------------------------------------------------------- 1 | 2 | //register 3 | export const LOGIN_REQUEST = "LOGIN_REQUEST" 4 | export const LOGIN_SUCCESS = "LOGIN_SUCCESS" 5 | export const LOGIN_FAILURE = "LOGIN_FAILURE" 6 | -------------------------------------------------------------------------------- /src/Redux/RecLogin/actionType.js: -------------------------------------------------------------------------------- 1 | export const REC_LOGIN_REQUEST = "REC_LOGIN_REQUEST" 2 | export const REC_LOGIN_SUCCESS = "REC_LOGIN_SUCCESS" 3 | export const REC_LOGIN_FAILURE = "REC_LOGIN_FAILURE" -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import Routes from "./Routes/Routes"; 2 | 3 | function App() { 4 | return ( 5 |
14 | Candidates
14 |Jobs
20 |Companies
26 |Sorry..! Something went wrong..
22 | 23 |rel()}>Please Click here to retry
26 |Shine.com free job alert 2020 is the perfect place to get quick updates for the most relevant jobs matching your job profile and requirements. We offer free job alert notifications for all kind of jobs. These jobs are delivered straight to your mailbox, and also you can also access them on your mobile. We send you customized job alert based on your preferred location, CTC expectations, job field, industry type, experience level and different organization. Our free job alert notifies you about the trending jobs which are posted on our portal and gives you a chance to be the first applicant to apply. 8 | The most useful part is that you can create your unique job alert on various industries and locations at the same time. For instance; you can create a job alert for digital marketing jobs or IT jobs and another job alert for banking jobs or government jobs. The benefit of creating job alerts is that you can be the first to apply to the vacancies, which creates an opportunity to be selected from recruiter early. 9 | 10 | To create a job alert, you have to fill out our form, and you will start receiving push notifications once you create a job alert.
11 |By syncing your social media account, you agree to shine terms and conditions
34 |react-transition-group animates me.
54 |Alisha
21 |{el}
) 27 | } 28 |30 | We are happy to Help you, Kindly contact our Customer Care number 080-47105555 31 |
32 |Not Registered on Shine?
12 |Register now and get discovered by over 14,000 recruiters!
13 | 14 |Our free job alert service helps you to get notified for jobs suiting your career goals and makes it easier for you to respond to job openings directly from your inbox. Besides, it helps you to stay updated with the current job market and career opportunities, along with information about salary trends. It is highly beneficial for active as well as passive job seekers. By opting for free job alert service, we make sure you do not miss any openings based on your highly targeted and specific job matches.
To get job notifications on your inbox, you need to sign in to shine.com or register with us. You will find a new tab ‘Create Job Alert’ on the top right side of the website. Fill out the details based on your profile and work area. You will start receiving job alerts when a recruiter will start posting vacancies on our job portal. You can create as many job alerts you wish to.
You can fetch some of the best job opportunities by providing targeted and detailed information. The system is an automated mechanism which operates and generates matched jobs based on the details you provide. To narrow your feeds, you must provide specific keywords, salary details, experience, location, department and industry. If you do not fill out information for these fields, you will receive job notifications for all job openings. We highly recommend providing specific details while creating a free job alert.
26 |
87 | Sign in
49 |
83 | 11 | Be the first one to apply to jobs 12 |
13 | 14 |
63 |
78 | Create a Free Job Alert 2021
19 |You can create upto 5 alerts
20 |or
133 |Show them your education, experience and skills
139 |
or
By syncing your social media account, you agree to shine terms and conditions
87 | 88 |300,000 jobs from 15,000 companies
98 |138 | contactus@shine.com 139 |
140 |
58 | Name: {`${el?.name}`}
64 |Email: {`${el.email}`}
65 |Location: {`${el.location}`}
66 |Mobile: {`${el.phone}`}
67 |...loading
:{el}
)} 193 |