├── .gitignore ├── Database └── fly.sql ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── controllers ├── AdminController.php ├── AdminViewController.php ├── Controller.php ├── UserController.php └── UserViewController.php ├── core ├── Application.php ├── Request.php ├── Response.php ├── Route.php └── Session.php ├── env-example ├── models ├── Admin.php ├── Database.php ├── Flight.php ├── Token.php └── User.php ├── public ├── .htaccess ├── css │ ├── admin │ │ ├── dashboard.css │ │ └── signin.css │ ├── custom.css │ ├── custom.css.map │ ├── custom.scss │ └── user │ │ ├── access.css │ │ └── dashboard.css ├── favicon.ico ├── index.php └── js │ ├── admin │ ├── dashboard.js │ ├── reservation.js │ └── signin.js │ └── user │ ├── dashboard.js │ ├── reservation.js │ ├── signin.js │ └── signup.js ├── uml ├── class.png └── usecase.png └── views ├── Admin ├── dashboard.php ├── reservation.php └── signin.php ├── User ├── dashboard.php ├── reservation.php ├── signin.php └── signup.php ├── _404.php └── home.php /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /vendor 3 | .env -------------------------------------------------------------------------------- /Database/fly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/Database/fly.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/composer.lock -------------------------------------------------------------------------------- /controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/controllers/AdminController.php -------------------------------------------------------------------------------- /controllers/AdminViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/controllers/AdminViewController.php -------------------------------------------------------------------------------- /controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/controllers/Controller.php -------------------------------------------------------------------------------- /controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/controllers/UserController.php -------------------------------------------------------------------------------- /controllers/UserViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/controllers/UserViewController.php -------------------------------------------------------------------------------- /core/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/core/Application.php -------------------------------------------------------------------------------- /core/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/core/Request.php -------------------------------------------------------------------------------- /core/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/core/Response.php -------------------------------------------------------------------------------- /core/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/core/Route.php -------------------------------------------------------------------------------- /core/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/core/Session.php -------------------------------------------------------------------------------- /env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/env-example -------------------------------------------------------------------------------- /models/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/models/Admin.php -------------------------------------------------------------------------------- /models/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/models/Database.php -------------------------------------------------------------------------------- /models/Flight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/models/Flight.php -------------------------------------------------------------------------------- /models/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/models/Token.php -------------------------------------------------------------------------------- /models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/models/User.php -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/admin/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/css/admin/dashboard.css -------------------------------------------------------------------------------- /public/css/admin/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/css/admin/signin.css -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/css/custom.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/css/custom.css.map -------------------------------------------------------------------------------- /public/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/css/custom.scss -------------------------------------------------------------------------------- /public/css/user/access.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/css/user/access.css -------------------------------------------------------------------------------- /public/css/user/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/css/user/dashboard.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/admin/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/js/admin/dashboard.js -------------------------------------------------------------------------------- /public/js/admin/reservation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/js/admin/reservation.js -------------------------------------------------------------------------------- /public/js/admin/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/js/admin/signin.js -------------------------------------------------------------------------------- /public/js/user/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/js/user/dashboard.js -------------------------------------------------------------------------------- /public/js/user/reservation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/js/user/reservation.js -------------------------------------------------------------------------------- /public/js/user/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/js/user/signin.js -------------------------------------------------------------------------------- /public/js/user/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/public/js/user/signup.js -------------------------------------------------------------------------------- /uml/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/uml/class.png -------------------------------------------------------------------------------- /uml/usecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/uml/usecase.png -------------------------------------------------------------------------------- /views/Admin/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/Admin/dashboard.php -------------------------------------------------------------------------------- /views/Admin/reservation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/Admin/reservation.php -------------------------------------------------------------------------------- /views/Admin/signin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/Admin/signin.php -------------------------------------------------------------------------------- /views/User/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/User/dashboard.php -------------------------------------------------------------------------------- /views/User/reservation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/User/reservation.php -------------------------------------------------------------------------------- /views/User/signin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/User/signin.php -------------------------------------------------------------------------------- /views/User/signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/User/signup.php -------------------------------------------------------------------------------- /views/_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/_404.php -------------------------------------------------------------------------------- /views/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yusfuu/Flight/HEAD/views/home.php --------------------------------------------------------------------------------