├── .gitignore ├── README.md ├── frontend ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── index.css │ ├── main.jsx │ └── pages │ │ ├── Home.jsx │ │ ├── Login.jsx │ │ └── Register.jsx ├── tailwind.config.js └── vite.config.js └── server ├── index.js ├── lib └── db.js ├── package-lock.json ├── package.json └── routes └── authRoutes.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/README.md -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/src/pages/Home.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/src/pages/Login.jsx -------------------------------------------------------------------------------- /frontend/src/pages/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/src/pages/Register.jsx -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/server/index.js -------------------------------------------------------------------------------- /server/lib/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/server/lib/db.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/authRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YousafKhan1/React-Node-MySQL-Authentication/HEAD/server/routes/authRoutes.js --------------------------------------------------------------------------------