├── README.md ├── client ├── .env ├── .gitignore ├── README.md ├── package.json ├── public │ ├── _redirects │ └── index.html ├── src │ ├── Api │ │ ├── ApiConstant.js │ │ ├── ApiInterceptor.js │ │ └── commonServices.js │ ├── App.jsx │ ├── assets │ │ ├── borisal.jpg │ │ ├── chatagong.jpg │ │ ├── dhaka.jpg │ │ ├── khulna.jpg │ │ ├── moymang.jpg │ │ ├── project-idea.gif │ │ ├── rajshi.jpg │ │ ├── rangpur.jpg │ │ ├── site-logo.png │ │ ├── slider-one.jpg │ │ ├── sylet.jpg │ │ └── ture.jpg │ ├── components │ │ ├── Auth │ │ │ ├── PrivateRoute.jsx │ │ │ ├── Register.css │ │ │ └── Register.jsx │ │ ├── Dashboard │ │ │ ├── Account │ │ │ │ ├── index.css │ │ │ │ └── index.jsx │ │ │ ├── AllBooking │ │ │ │ └── index.jsx │ │ │ ├── DashboardHome │ │ │ │ ├── index.css │ │ │ │ └── index.jsx │ │ │ ├── ManageHotels │ │ │ │ ├── AddHotelModal.jsx │ │ │ │ └── index.jsx │ │ │ ├── ManageRoom │ │ │ │ ├── AddRoomModal.jsx │ │ │ │ └── index.jsx │ │ │ ├── MyBooking │ │ │ │ ├── index.css │ │ │ │ └── index.jsx │ │ │ ├── Settings │ │ │ │ ├── index.css │ │ │ │ └── index.jsx │ │ │ ├── Users │ │ │ │ ├── index.css │ │ │ │ └── index.jsx │ │ │ ├── common │ │ │ │ ├── DashBoardHeader.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ ├── dashboardHeader.css │ │ │ │ └── sidebar.css │ │ │ └── index.jsx │ │ ├── Home │ │ │ ├── City.css │ │ │ ├── Citys.jsx │ │ │ ├── ClientReviews.css │ │ │ ├── ClientReviews.jsx │ │ │ ├── Header.css │ │ │ ├── Header.jsx │ │ │ ├── HotelHeaderWithModelVideo.jsx │ │ │ ├── HotelHeroWithModalVideo.css │ │ │ ├── SomeHotels.css │ │ │ ├── SomeHotels.jsx │ │ │ ├── Status.jsx │ │ │ ├── VedioPlayer │ │ │ │ ├── VedioPlayer.css │ │ │ │ └── VedioPlayer.jsx │ │ │ └── someRooms.css │ │ ├── Hotels │ │ │ └── AllHotels.jsx │ │ ├── NotFound │ │ │ └── NotFound.jsx │ │ ├── Roomes │ │ │ ├── AllRooms.jsx │ │ │ └── allRooms.css │ │ ├── ScrollToggle.jsx │ │ ├── SingleRoom │ │ │ ├── BookingRoomModal.jsx │ │ │ ├── SingleRoom.jsx │ │ │ └── singleRoom.css │ │ └── common │ │ │ ├── Footer │ │ │ ├── Footer.jsx │ │ │ └── footer.css │ │ │ └── NavBar │ │ │ ├── NavBar.css │ │ │ └── NavBar.jsx │ ├── context │ │ └── BookingContext.jsx │ ├── hooks │ │ └── useAuth.js │ ├── index.css │ ├── index.js │ ├── pages │ │ ├── About.jsx │ │ ├── Dashboard │ │ │ ├── DashboardHomePage.jsx │ │ │ └── DashboardPage.jsx │ │ ├── Home.jsx │ │ ├── Hotels.jsx │ │ ├── Room.jsx │ │ ├── Rooms.jsx │ │ └── Services.jsx │ ├── routers │ │ └── Routers.jsx │ └── utils │ │ └── cloudinaryUpload.js └── yarn.lock └── server ├── .env.example ├── .gitignore ├── controllers ├── authController.js ├── bookingController.js ├── errorController.js ├── hotelsController.js ├── roomsController.js └── usersController.js ├── index.js ├── middleware └── VerifyToken.js ├── models ├── bookingModel.js ├── hotelesModel.js ├── roomsModel.js └── usersModel.js ├── package.json ├── routes ├── authRoutes.js ├── bookingRoutes.js ├── hotelsRoutes.js ├── roomsRoutes.js └── usersRoutes.js ├── utils └── appError.js ├── vercel.json └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/README.md -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/.env -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/src/Api/ApiConstant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/Api/ApiConstant.js -------------------------------------------------------------------------------- /client/src/Api/ApiInterceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/Api/ApiInterceptor.js -------------------------------------------------------------------------------- /client/src/Api/commonServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/Api/commonServices.js -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/assets/borisal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/borisal.jpg -------------------------------------------------------------------------------- /client/src/assets/chatagong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/chatagong.jpg -------------------------------------------------------------------------------- /client/src/assets/dhaka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/dhaka.jpg -------------------------------------------------------------------------------- /client/src/assets/khulna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/khulna.jpg -------------------------------------------------------------------------------- /client/src/assets/moymang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/moymang.jpg -------------------------------------------------------------------------------- /client/src/assets/project-idea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/project-idea.gif -------------------------------------------------------------------------------- /client/src/assets/rajshi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/rajshi.jpg -------------------------------------------------------------------------------- /client/src/assets/rangpur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/rangpur.jpg -------------------------------------------------------------------------------- /client/src/assets/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/site-logo.png -------------------------------------------------------------------------------- /client/src/assets/slider-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/slider-one.jpg -------------------------------------------------------------------------------- /client/src/assets/sylet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/sylet.jpg -------------------------------------------------------------------------------- /client/src/assets/ture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/assets/ture.jpg -------------------------------------------------------------------------------- /client/src/components/Auth/PrivateRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Auth/PrivateRoute.jsx -------------------------------------------------------------------------------- /client/src/components/Auth/Register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Auth/Register.css -------------------------------------------------------------------------------- /client/src/components/Auth/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Auth/Register.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/Account/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/Account/index.css -------------------------------------------------------------------------------- /client/src/components/Dashboard/Account/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/Account/index.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/AllBooking/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/AllBooking/index.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/DashboardHome/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/components/Dashboard/DashboardHome/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/DashboardHome/index.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/ManageHotels/AddHotelModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/ManageHotels/AddHotelModal.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/ManageHotels/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/ManageHotels/index.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/ManageRoom/AddRoomModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/ManageRoom/AddRoomModal.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/ManageRoom/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/ManageRoom/index.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/MyBooking/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/MyBooking/index.css -------------------------------------------------------------------------------- /client/src/components/Dashboard/MyBooking/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/MyBooking/index.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/Settings/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/Settings/index.css -------------------------------------------------------------------------------- /client/src/components/Dashboard/Settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/Settings/index.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/Users/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/Users/index.css -------------------------------------------------------------------------------- /client/src/components/Dashboard/Users/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/Users/index.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/common/DashBoardHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/common/DashBoardHeader.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/common/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/common/Sidebar.jsx -------------------------------------------------------------------------------- /client/src/components/Dashboard/common/dashboardHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/common/dashboardHeader.css -------------------------------------------------------------------------------- /client/src/components/Dashboard/common/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/common/sidebar.css -------------------------------------------------------------------------------- /client/src/components/Dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Dashboard/index.jsx -------------------------------------------------------------------------------- /client/src/components/Home/City.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/City.css -------------------------------------------------------------------------------- /client/src/components/Home/Citys.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/Citys.jsx -------------------------------------------------------------------------------- /client/src/components/Home/ClientReviews.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/ClientReviews.css -------------------------------------------------------------------------------- /client/src/components/Home/ClientReviews.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/ClientReviews.jsx -------------------------------------------------------------------------------- /client/src/components/Home/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/Header.css -------------------------------------------------------------------------------- /client/src/components/Home/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/Header.jsx -------------------------------------------------------------------------------- /client/src/components/Home/HotelHeaderWithModelVideo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/HotelHeaderWithModelVideo.jsx -------------------------------------------------------------------------------- /client/src/components/Home/HotelHeroWithModalVideo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/HotelHeroWithModalVideo.css -------------------------------------------------------------------------------- /client/src/components/Home/SomeHotels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/SomeHotels.css -------------------------------------------------------------------------------- /client/src/components/Home/SomeHotels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/SomeHotels.jsx -------------------------------------------------------------------------------- /client/src/components/Home/Status.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/Status.jsx -------------------------------------------------------------------------------- /client/src/components/Home/VedioPlayer/VedioPlayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/VedioPlayer/VedioPlayer.css -------------------------------------------------------------------------------- /client/src/components/Home/VedioPlayer/VedioPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/VedioPlayer/VedioPlayer.jsx -------------------------------------------------------------------------------- /client/src/components/Home/someRooms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Home/someRooms.css -------------------------------------------------------------------------------- /client/src/components/Hotels/AllHotels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Hotels/AllHotels.jsx -------------------------------------------------------------------------------- /client/src/components/NotFound/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/NotFound/NotFound.jsx -------------------------------------------------------------------------------- /client/src/components/Roomes/AllRooms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Roomes/AllRooms.jsx -------------------------------------------------------------------------------- /client/src/components/Roomes/allRooms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/Roomes/allRooms.css -------------------------------------------------------------------------------- /client/src/components/ScrollToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/ScrollToggle.jsx -------------------------------------------------------------------------------- /client/src/components/SingleRoom/BookingRoomModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/SingleRoom/BookingRoomModal.jsx -------------------------------------------------------------------------------- /client/src/components/SingleRoom/SingleRoom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/SingleRoom/SingleRoom.jsx -------------------------------------------------------------------------------- /client/src/components/SingleRoom/singleRoom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/SingleRoom/singleRoom.css -------------------------------------------------------------------------------- /client/src/components/common/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/common/Footer/Footer.jsx -------------------------------------------------------------------------------- /client/src/components/common/Footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/common/Footer/footer.css -------------------------------------------------------------------------------- /client/src/components/common/NavBar/NavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/common/NavBar/NavBar.css -------------------------------------------------------------------------------- /client/src/components/common/NavBar/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/components/common/NavBar/NavBar.jsx -------------------------------------------------------------------------------- /client/src/context/BookingContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/context/BookingContext.jsx -------------------------------------------------------------------------------- /client/src/hooks/useAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/hooks/useAuth.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/pages/About.jsx -------------------------------------------------------------------------------- /client/src/pages/Dashboard/DashboardHomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/pages/Dashboard/DashboardHomePage.jsx -------------------------------------------------------------------------------- /client/src/pages/Dashboard/DashboardPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/pages/Dashboard/DashboardPage.jsx -------------------------------------------------------------------------------- /client/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/pages/Home.jsx -------------------------------------------------------------------------------- /client/src/pages/Hotels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/pages/Hotels.jsx -------------------------------------------------------------------------------- /client/src/pages/Room.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/pages/Room.jsx -------------------------------------------------------------------------------- /client/src/pages/Rooms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/pages/Rooms.jsx -------------------------------------------------------------------------------- /client/src/pages/Services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/pages/Services.jsx -------------------------------------------------------------------------------- /client/src/routers/Routers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/routers/Routers.jsx -------------------------------------------------------------------------------- /client/src/utils/cloudinaryUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/src/utils/cloudinaryUpload.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/.env.example -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | /node_modules -------------------------------------------------------------------------------- /server/controllers/authController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/controllers/authController.js -------------------------------------------------------------------------------- /server/controllers/bookingController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/controllers/bookingController.js -------------------------------------------------------------------------------- /server/controllers/errorController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/controllers/errorController.js -------------------------------------------------------------------------------- /server/controllers/hotelsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/controllers/hotelsController.js -------------------------------------------------------------------------------- /server/controllers/roomsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/controllers/roomsController.js -------------------------------------------------------------------------------- /server/controllers/usersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/controllers/usersController.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/index.js -------------------------------------------------------------------------------- /server/middleware/VerifyToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/middleware/VerifyToken.js -------------------------------------------------------------------------------- /server/models/bookingModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/models/bookingModel.js -------------------------------------------------------------------------------- /server/models/hotelesModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/models/hotelesModel.js -------------------------------------------------------------------------------- /server/models/roomsModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/models/roomsModel.js -------------------------------------------------------------------------------- /server/models/usersModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/models/usersModel.js -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/authRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/routes/authRoutes.js -------------------------------------------------------------------------------- /server/routes/bookingRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/routes/bookingRoutes.js -------------------------------------------------------------------------------- /server/routes/hotelsRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/routes/hotelsRoutes.js -------------------------------------------------------------------------------- /server/routes/roomsRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/routes/roomsRoutes.js -------------------------------------------------------------------------------- /server/routes/usersRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/routes/usersRoutes.js -------------------------------------------------------------------------------- /server/utils/appError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/utils/appError.js -------------------------------------------------------------------------------- /server/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/vercel.json -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahalnomandev/BOOKING_HOTEL/HEAD/server/yarn.lock --------------------------------------------------------------------------------