├── .gitignore ├── README.md ├── backend ├── config │ └── db.ts ├── controllers │ ├── bookingController.ts │ ├── roomController.ts │ └── userController.ts ├── middlewares │ ├── authMiddleware.ts │ └── errorMiddleware.ts ├── models │ ├── Booking.ts │ ├── Room.ts │ └── User.ts ├── routes │ ├── bookingRoutes.ts │ ├── roomRoutes.ts │ ├── uploadRoutes.ts │ └── userRoutes.ts ├── server.ts └── utils │ ├── generateToken.ts │ └── getStripe.ts ├── frontend ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── @types │ │ └── allTypes.d.ts │ ├── App.css │ ├── App.tsx │ ├── bootstrap.min.css │ ├── components │ │ ├── FormReview.tsx │ │ ├── Header.tsx │ │ ├── ListReviews.tsx │ │ ├── Loader.tsx │ │ ├── Message.tsx │ │ ├── OnlyAdmin.tsx │ │ ├── Paginate.tsx │ │ ├── ProtectedRoute.tsx │ │ ├── Rating.tsx │ │ ├── RoomCard.tsx │ │ ├── RoomFeatures.tsx │ │ └── SearchRooms.tsx │ ├── hooks │ │ └── useAuthStatus.tsx │ ├── index.tsx │ ├── interfaces │ │ ├── IBooking.ts │ │ ├── IRoom.ts │ │ └── IUser.ts │ ├── react-app-env.d.ts │ ├── redux │ │ ├── actions │ │ │ ├── BookingActions.tsx │ │ │ ├── RoomActions.tsx │ │ │ └── UserActions.tsx │ │ ├── constants │ │ │ ├── BookingConstants.tsx │ │ │ ├── RoomConstants.tsx │ │ │ └── UserConstants.tsx │ │ ├── reducers │ │ │ ├── BookingReducers.tsx │ │ │ ├── RoomReducers.tsx │ │ │ └── UserReducers.tsx │ │ └── store.tsx │ └── screens │ │ ├── AdminBookingsScreen.tsx │ │ ├── AdminCreateRoomScreen.tsx │ │ ├── AdminEditRoomScreen.tsx │ │ ├── AdminEditUserScreen.tsx │ │ ├── AdminRoomsScreen.tsx │ │ ├── AdminUsersScreen.tsx │ │ ├── HomeScreen.tsx │ │ ├── LoginScreen.tsx │ │ ├── MyBookingsScreen.tsx │ │ ├── PasswordScreen.tsx │ │ ├── ProfileScreen.tsx │ │ ├── RegisterScreen.tsx │ │ └── RoomDetailsScreen.tsx ├── tsconfig.json └── yarn.lock ├── package.json ├── tsconfig.json └── uploads ├── default-room.jpeg ├── image-1643568802545-854384589.png ├── image-1643569249831-505829359.jpeg ├── image-1644677085702-997801630.jpg ├── image-1644677120247-123558054.jpg ├── image-1644677259587-703863587.jpg ├── image-1644677336866-354344121.jpg ├── image-1644959297658-856579790.jpg ├── image-1644959297667-735126546.jpg ├── image-1644959682091-418979889.jpg ├── image-1644959682097-256588529.jpg ├── image-1645292083270-442621328.jpg ├── image-1645292083276-634322936.jpg ├── image-1645292974624-924191412.jpg ├── image-1645292974630-35970355.jpg ├── image-1645293318427-623712477.jpg ├── image-1645293318433-327794372.jpg └── user-default.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/README.md -------------------------------------------------------------------------------- /backend/config/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/config/db.ts -------------------------------------------------------------------------------- /backend/controllers/bookingController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/controllers/bookingController.ts -------------------------------------------------------------------------------- /backend/controllers/roomController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/controllers/roomController.ts -------------------------------------------------------------------------------- /backend/controllers/userController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/controllers/userController.ts -------------------------------------------------------------------------------- /backend/middlewares/authMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/middlewares/authMiddleware.ts -------------------------------------------------------------------------------- /backend/middlewares/errorMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/middlewares/errorMiddleware.ts -------------------------------------------------------------------------------- /backend/models/Booking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/models/Booking.ts -------------------------------------------------------------------------------- /backend/models/Room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/models/Room.ts -------------------------------------------------------------------------------- /backend/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/models/User.ts -------------------------------------------------------------------------------- /backend/routes/bookingRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/routes/bookingRoutes.ts -------------------------------------------------------------------------------- /backend/routes/roomRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/routes/roomRoutes.ts -------------------------------------------------------------------------------- /backend/routes/uploadRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/routes/uploadRoutes.ts -------------------------------------------------------------------------------- /backend/routes/userRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/routes/userRoutes.ts -------------------------------------------------------------------------------- /backend/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/server.ts -------------------------------------------------------------------------------- /backend/utils/generateToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/utils/generateToken.ts -------------------------------------------------------------------------------- /backend/utils/getStripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/backend/utils/getStripe.ts -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/@types/allTypes.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/bootstrap.min.css -------------------------------------------------------------------------------- /frontend/src/components/FormReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/FormReview.tsx -------------------------------------------------------------------------------- /frontend/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/Header.tsx -------------------------------------------------------------------------------- /frontend/src/components/ListReviews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/ListReviews.tsx -------------------------------------------------------------------------------- /frontend/src/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/Loader.tsx -------------------------------------------------------------------------------- /frontend/src/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/Message.tsx -------------------------------------------------------------------------------- /frontend/src/components/OnlyAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/OnlyAdmin.tsx -------------------------------------------------------------------------------- /frontend/src/components/Paginate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/Paginate.tsx -------------------------------------------------------------------------------- /frontend/src/components/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/ProtectedRoute.tsx -------------------------------------------------------------------------------- /frontend/src/components/Rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/Rating.tsx -------------------------------------------------------------------------------- /frontend/src/components/RoomCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/RoomCard.tsx -------------------------------------------------------------------------------- /frontend/src/components/RoomFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/RoomFeatures.tsx -------------------------------------------------------------------------------- /frontend/src/components/SearchRooms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/components/SearchRooms.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useAuthStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/hooks/useAuthStatus.tsx -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/interfaces/IBooking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/interfaces/IBooking.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/IRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/interfaces/IRoom.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/IUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/interfaces/IUser.ts -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/src/redux/actions/BookingActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/actions/BookingActions.tsx -------------------------------------------------------------------------------- /frontend/src/redux/actions/RoomActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/actions/RoomActions.tsx -------------------------------------------------------------------------------- /frontend/src/redux/actions/UserActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/actions/UserActions.tsx -------------------------------------------------------------------------------- /frontend/src/redux/constants/BookingConstants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/constants/BookingConstants.tsx -------------------------------------------------------------------------------- /frontend/src/redux/constants/RoomConstants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/constants/RoomConstants.tsx -------------------------------------------------------------------------------- /frontend/src/redux/constants/UserConstants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/constants/UserConstants.tsx -------------------------------------------------------------------------------- /frontend/src/redux/reducers/BookingReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/reducers/BookingReducers.tsx -------------------------------------------------------------------------------- /frontend/src/redux/reducers/RoomReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/reducers/RoomReducers.tsx -------------------------------------------------------------------------------- /frontend/src/redux/reducers/UserReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/reducers/UserReducers.tsx -------------------------------------------------------------------------------- /frontend/src/redux/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/redux/store.tsx -------------------------------------------------------------------------------- /frontend/src/screens/AdminBookingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/AdminBookingsScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/AdminCreateRoomScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/AdminCreateRoomScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/AdminEditRoomScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/AdminEditRoomScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/AdminEditUserScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/AdminEditUserScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/AdminRoomsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/AdminRoomsScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/AdminUsersScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/AdminUsersScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/HomeScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/LoginScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/MyBookingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/MyBookingsScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/PasswordScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/PasswordScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/ProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/ProfileScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/RegisterScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/RegisterScreen.tsx -------------------------------------------------------------------------------- /frontend/src/screens/RoomDetailsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/src/screens/RoomDetailsScreen.tsx -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uploads/default-room.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/default-room.jpeg -------------------------------------------------------------------------------- /uploads/image-1643568802545-854384589.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1643568802545-854384589.png -------------------------------------------------------------------------------- /uploads/image-1643569249831-505829359.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1643569249831-505829359.jpeg -------------------------------------------------------------------------------- /uploads/image-1644677085702-997801630.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1644677085702-997801630.jpg -------------------------------------------------------------------------------- /uploads/image-1644677120247-123558054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1644677120247-123558054.jpg -------------------------------------------------------------------------------- /uploads/image-1644677259587-703863587.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1644677259587-703863587.jpg -------------------------------------------------------------------------------- /uploads/image-1644677336866-354344121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1644677336866-354344121.jpg -------------------------------------------------------------------------------- /uploads/image-1644959297658-856579790.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1644959297658-856579790.jpg -------------------------------------------------------------------------------- /uploads/image-1644959297667-735126546.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1644959297667-735126546.jpg -------------------------------------------------------------------------------- /uploads/image-1644959682091-418979889.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1644959682091-418979889.jpg -------------------------------------------------------------------------------- /uploads/image-1644959682097-256588529.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1644959682097-256588529.jpg -------------------------------------------------------------------------------- /uploads/image-1645292083270-442621328.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1645292083270-442621328.jpg -------------------------------------------------------------------------------- /uploads/image-1645292083276-634322936.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1645292083276-634322936.jpg -------------------------------------------------------------------------------- /uploads/image-1645292974624-924191412.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1645292974624-924191412.jpg -------------------------------------------------------------------------------- /uploads/image-1645292974630-35970355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1645292974630-35970355.jpg -------------------------------------------------------------------------------- /uploads/image-1645293318427-623712477.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1645293318427-623712477.jpg -------------------------------------------------------------------------------- /uploads/image-1645293318433-327794372.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/image-1645293318433-327794372.jpg -------------------------------------------------------------------------------- /uploads/user-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saidMounaim/hotel-booking/HEAD/uploads/user-default.jpg --------------------------------------------------------------------------------