├── .htaccess ├── .vscode └── settings.json ├── app └── classes │ ├── Redirect.php │ └── Session.php ├── autoload.php ├── bootstrap.php ├── controllers ├── AdminController.php ├── FlightController.php ├── HomeController.php └── UserController.php ├── database └── Db.php ├── helpers └── .htaccess ├── images ├── 1registerbg.jpg ├── loginbg.jpg └── registerbg.jpg ├── index.php ├── models ├── Admin.php ├── Flight.php └── User.php ├── style and script ├── css │ ├── main.css │ ├── main.css.map │ └── main.scss ├── node_modules │ └── bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── js │ │ ├── dist │ │ │ ├── alert.js │ │ │ ├── alert.js.map │ │ │ ├── base-component.js │ │ │ ├── base-component.js.map │ │ │ ├── button.js │ │ │ ├── button.js.map │ │ │ ├── carousel.js │ │ │ ├── carousel.js.map │ │ │ ├── collapse.js │ │ │ ├── collapse.js.map │ │ │ ├── dom │ │ │ │ ├── data.js │ │ │ │ ├── data.js.map │ │ │ │ ├── event-handler.js │ │ │ │ ├── event-handler.js.map │ │ │ │ ├── manipulator.js │ │ │ │ ├── manipulator.js.map │ │ │ │ ├── selector-engine.js │ │ │ │ └── selector-engine.js.map │ │ │ ├── dropdown.js │ │ │ ├── dropdown.js.map │ │ │ ├── modal.js │ │ │ ├── modal.js.map │ │ │ ├── offcanvas.js │ │ │ ├── offcanvas.js.map │ │ │ ├── popover.js │ │ │ ├── popover.js.map │ │ │ ├── scrollspy.js │ │ │ ├── scrollspy.js.map │ │ │ ├── tab.js │ │ │ ├── tab.js.map │ │ │ ├── toast.js │ │ │ ├── toast.js.map │ │ │ ├── tooltip.js │ │ │ └── tooltip.js.map │ │ └── src │ │ │ ├── alert.js │ │ │ ├── base-component.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dom │ │ │ ├── data.js │ │ │ ├── event-handler.js │ │ │ ├── manipulator.js │ │ │ └── selector-engine.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── offcanvas.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── toast.js │ │ │ ├── tooltip.js │ │ │ └── util │ │ │ ├── backdrop.js │ │ │ ├── index.js │ │ │ ├── sanitizer.js │ │ │ └── scrollbar.js │ │ ├── package.json │ │ └── scss │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _containers.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _helpers.scss │ │ ├── _images.scss │ │ ├── _list-group.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _offcanvas.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap-utilities.scss │ │ ├── bootstrap.scss │ │ ├── forms │ │ ├── _floating-labels.scss │ │ ├── _form-check.scss │ │ ├── _form-control.scss │ │ ├── _form-range.scss │ │ ├── _form-select.scss │ │ ├── _form-text.scss │ │ ├── _input-group.scss │ │ ├── _labels.scss │ │ └── _validation.scss │ │ ├── helpers │ │ ├── _clearfix.scss │ │ ├── _colored-links.scss │ │ ├── _position.scss │ │ ├── _ratio.scss │ │ ├── _stretched-link.scss │ │ ├── _text-truncation.scss │ │ └── _visually-hidden.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _color-scheme.scss │ │ ├── _container.scss │ │ ├── _deprecate.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _table-variants.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ ├── _utilities.scss │ │ └── _visually-hidden.scss │ │ ├── utilities │ │ └── _api.scss │ │ └── vendor │ │ └── _rfs.scss └── package-lock.json └── views ├── addflight.php ├── allflights.php ├── allreservations.php ├── cancel.php ├── delete-flight.php ├── edit-flight.php ├── home.php ├── includes ├── 404.php ├── admin_header.php ├── footer.php ├── header.php ├── np.php └── reservation_success.php ├── login.php ├── logout.php ├── myreservations.php ├── register.php ├── reserve.php ├── reservemulti.php └── search.php /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/.htaccess -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /app/classes/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/app/classes/Redirect.php -------------------------------------------------------------------------------- /app/classes/Session.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/autoload.php -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/bootstrap.php -------------------------------------------------------------------------------- /controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/controllers/AdminController.php -------------------------------------------------------------------------------- /controllers/FlightController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/controllers/FlightController.php -------------------------------------------------------------------------------- /controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/controllers/HomeController.php -------------------------------------------------------------------------------- /controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/controllers/UserController.php -------------------------------------------------------------------------------- /database/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/database/Db.php -------------------------------------------------------------------------------- /helpers/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/helpers/.htaccess -------------------------------------------------------------------------------- /images/1registerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/images/1registerbg.jpg -------------------------------------------------------------------------------- /images/loginbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/images/loginbg.jpg -------------------------------------------------------------------------------- /images/registerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/images/registerbg.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/index.php -------------------------------------------------------------------------------- /models/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/models/Admin.php -------------------------------------------------------------------------------- /models/Flight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/models/Flight.php -------------------------------------------------------------------------------- /models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/models/User.php -------------------------------------------------------------------------------- /style and script/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/css/main.css -------------------------------------------------------------------------------- /style and script/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/css/main.css.map -------------------------------------------------------------------------------- /style and script/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/css/main.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/LICENSE -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/README.md -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/alert.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/alert.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/base-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/base-component.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/base-component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/base-component.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/button.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/button.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/carousel.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/carousel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/carousel.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/collapse.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/collapse.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/collapse.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dom/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dom/data.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dom/data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dom/data.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dom/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dom/event-handler.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dom/event-handler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dom/event-handler.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dom/manipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dom/manipulator.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dom/manipulator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dom/manipulator.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dom/selector-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dom/selector-engine.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dom/selector-engine.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dom/selector-engine.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dropdown.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/dropdown.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/dropdown.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/modal.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/offcanvas.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/offcanvas.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/offcanvas.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/popover.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/popover.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/popover.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/scrollspy.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/scrollspy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/scrollspy.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/tab.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/tab.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/toast.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/toast.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/toast.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/tooltip.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/dist/tooltip.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/dist/tooltip.js.map -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/base-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/base-component.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/carousel.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/collapse.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/dom/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/dom/data.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/dom/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/dom/event-handler.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/dom/manipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/dom/manipulator.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/dom/selector-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/dom/selector-engine.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/dropdown.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/offcanvas.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/scrollspy.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/toast.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/util/backdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/util/backdrop.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/util/index.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/util/sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/util/sanitizer.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/js/src/util/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/js/src/util/scrollbar.js -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/package.json -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_accordion.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_containers.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_helpers.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_offcanvas.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/bootstrap-utilities.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_floating-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_floating-labels.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_form-check.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_form-control.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_form-range.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_form-select.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_form-text.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_input-group.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_labels.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/forms/_validation.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/helpers/_clearfix.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/helpers/_colored-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/helpers/_colored-links.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/helpers/_position.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/helpers/_ratio.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/helpers/_stretched-link.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/helpers/_text-truncation.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_color-scheme.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_container.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_table-variants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_table-variants.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_utilities.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/mixins/_visually-hidden.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/utilities/_api.scss -------------------------------------------------------------------------------- /style and script/node_modules/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/node_modules/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /style and script/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/style and script/package-lock.json -------------------------------------------------------------------------------- /views/addflight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/addflight.php -------------------------------------------------------------------------------- /views/allflights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/allflights.php -------------------------------------------------------------------------------- /views/allreservations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/allreservations.php -------------------------------------------------------------------------------- /views/cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/cancel.php -------------------------------------------------------------------------------- /views/delete-flight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/delete-flight.php -------------------------------------------------------------------------------- /views/edit-flight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/edit-flight.php -------------------------------------------------------------------------------- /views/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/home.php -------------------------------------------------------------------------------- /views/includes/404.php: -------------------------------------------------------------------------------- 1 | rjaaaa3 -------------------------------------------------------------------------------- /views/includes/admin_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/includes/admin_header.php -------------------------------------------------------------------------------- /views/includes/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/includes/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/includes/header.php -------------------------------------------------------------------------------- /views/includes/np.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/includes/reservation_success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/includes/reservation_success.php -------------------------------------------------------------------------------- /views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayoub-Mabrouk/Flight-Reservation/HEAD/views/login.php -------------------------------------------------------------------------------- /views/logout.php: -------------------------------------------------------------------------------- 1 |