├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.jsx │ ├── Images │ ├── GoogleIcon.svg │ ├── googleIcon.png │ ├── loginPageCoverImage.svg │ └── oAuth2.0.png │ ├── components │ ├── HeroImage │ │ └── HeroImage.jsx │ ├── header │ │ └── header.jsx │ └── loginForm │ │ ├── loginForm.css │ │ └── loginForm.jsx │ ├── index.css │ ├── index.js │ └── pages │ ├── Auth │ └── AuthPage.jsx │ └── home │ └── home.page.jsx └── server ├── .gitignore ├── Routers └── auth │ └── passport.js ├── app.js ├── db └── db.js ├── package-lock.json └── package.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/Images/GoogleIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/Images/GoogleIcon.svg -------------------------------------------------------------------------------- /client/src/Images/googleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/Images/googleIcon.png -------------------------------------------------------------------------------- /client/src/Images/loginPageCoverImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/Images/loginPageCoverImage.svg -------------------------------------------------------------------------------- /client/src/Images/oAuth2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/Images/oAuth2.0.png -------------------------------------------------------------------------------- /client/src/components/HeroImage/HeroImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/components/HeroImage/HeroImage.jsx -------------------------------------------------------------------------------- /client/src/components/header/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/components/header/header.jsx -------------------------------------------------------------------------------- /client/src/components/loginForm/loginForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/components/loginForm/loginForm.css -------------------------------------------------------------------------------- /client/src/components/loginForm/loginForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/components/loginForm/loginForm.jsx -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/pages/Auth/AuthPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/pages/Auth/AuthPage.jsx -------------------------------------------------------------------------------- /client/src/pages/home/home.page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/client/src/pages/home/home.page.jsx -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /server/Routers/auth/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/server/Routers/auth/passport.js -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/server/app.js -------------------------------------------------------------------------------- /server/db/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/server/db/db.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulnikam2002/Google-oAuth2.0-ReactJS-NodeJs-Mysql/HEAD/server/package.json --------------------------------------------------------------------------------