├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── component │ │ ├── brand-add │ │ │ ├── brand-add.component.css │ │ │ ├── brand-add.component.html │ │ │ └── brand-add.component.ts │ │ ├── brand-category │ │ │ ├── brand-category.component.css │ │ │ ├── brand-category.component.html │ │ │ └── brand-category.component.ts │ │ ├── brand-update │ │ │ ├── brand-update.component.css │ │ │ ├── brand-update.component.html │ │ │ └── brand-update.component.ts │ │ ├── brand │ │ │ ├── brand.component.css │ │ │ ├── brand.component.html │ │ │ └── brand.component.ts │ │ ├── car-add │ │ │ ├── car-add.component.css │ │ │ ├── car-add.component.html │ │ │ └── car-add.component.ts │ │ ├── car-filter │ │ │ ├── car-filter.component.css │ │ │ ├── car-filter.component.html │ │ │ └── car-filter.component.ts │ │ ├── car-update │ │ │ ├── car-update.component.css │ │ │ ├── car-update.component.html │ │ │ └── car-update.component.ts │ │ ├── car │ │ │ ├── car-detail │ │ │ │ ├── car-detail.component.css │ │ │ │ ├── car-detail.component.html │ │ │ │ └── car-detail.component.ts │ │ │ ├── car.component.css │ │ │ ├── car.component.html │ │ │ └── car.component.ts │ │ ├── color-add │ │ │ ├── color-add.component.css │ │ │ ├── color-add.component.html │ │ │ └── color-add.component.ts │ │ ├── color-list │ │ │ ├── color-list.component.css │ │ │ ├── color-list.component.html │ │ │ └── color-list.component.ts │ │ ├── color-update │ │ │ ├── color-update.component.css │ │ │ ├── color-update.component.html │ │ │ └── color-update.component.ts │ │ ├── color │ │ │ ├── color.component.css │ │ │ ├── color.component.html │ │ │ └── color.component.ts │ │ ├── credit-card-payment │ │ │ ├── credit-card-payment.component.css │ │ │ ├── credit-card-payment.component.html │ │ │ └── credit-card-payment.component.ts │ │ ├── customer │ │ │ ├── customer.component.css │ │ │ ├── customer.component.html │ │ │ └── customer.component.ts │ │ ├── footer │ │ │ ├── footer.component.css │ │ │ ├── footer.component.html │ │ │ └── footer.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ └── login.component.ts │ │ ├── navi │ │ │ ├── navi.component.css │ │ │ ├── navi.component.html │ │ │ └── navi.component.ts │ │ ├── profil │ │ │ ├── profil-update │ │ │ │ ├── profil-update.component.css │ │ │ │ ├── profil-update.component.html │ │ │ │ └── profil-update.component.ts │ │ │ ├── profil.component.css │ │ │ ├── profil.component.html │ │ │ └── profil.component.ts │ │ ├── register │ │ │ ├── register.component.css │ │ │ ├── register.component.html │ │ │ └── register.component.ts │ │ └── rental │ │ │ ├── rental.component.css │ │ │ ├── rental.component.html │ │ │ ├── rental.component.ts │ │ │ └── rentalDetails │ │ │ └── rental-details │ │ │ ├── rental-details.component.css │ │ │ ├── rental-details.component.html │ │ │ └── rental-details.component.ts │ ├── directives │ │ └── holdable.directive.ts │ ├── guard │ │ └── login.guard.ts │ ├── interceptors │ │ └── auth.interceptor.ts │ ├── models │ │ ├── brand.ts │ │ ├── car.ts │ │ ├── carDetail.ts │ │ ├── carImage.ts │ │ ├── color.ts │ │ ├── customer-real.ts │ │ ├── customer.ts │ │ ├── customerCreditCard.ts │ │ ├── customerResponseModel.ts │ │ ├── itemResponseModel.ts │ │ ├── listResponseModel.ts │ │ ├── loginModel.ts │ │ ├── payment.ts │ │ ├── registerModel.ts │ │ ├── rental.ts │ │ ├── rentalDto.ts │ │ ├── responseModel.ts │ │ ├── singleResponseModel.ts │ │ ├── tokenModel.ts │ │ └── user.ts │ ├── pipes │ │ ├── filter-brand-pipe.pipe.ts │ │ ├── filter-car-pipe.pipe.ts │ │ └── filter-color-pipe.pipe.ts │ └── services │ │ ├── auth.service.ts │ │ ├── brand-category.service.ts │ │ ├── brand.service.ts │ │ ├── car-detail.service.ts │ │ ├── car-image.service.ts │ │ ├── car.service.ts │ │ ├── colors.service.ts │ │ ├── customer-credit-card.service.ts │ │ ├── customer.service.ts │ │ ├── findeks-service.service.ts │ │ ├── local-storage.service.ts │ │ ├── payment.service.ts │ │ ├── rental.service.ts │ │ ├── shared.service.ts │ │ └── user.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── images │ ├── brands-updated.png │ ├── brands.png │ ├── car-detail.png │ ├── car-update.png │ ├── cars.png │ ├── home.png │ ├── login.png │ ├── payment.png │ ├── profil-edit.png │ ├── register.png │ └── rental.png ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/component/brand-add/brand-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/brand-add/brand-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/brand-add/brand-add.component.html -------------------------------------------------------------------------------- /src/app/component/brand-add/brand-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/brand-add/brand-add.component.ts -------------------------------------------------------------------------------- /src/app/component/brand-category/brand-category.component.css: -------------------------------------------------------------------------------- 1 | .list-group{ 2 | margin-top: 10px; 3 | } -------------------------------------------------------------------------------- /src/app/component/brand-category/brand-category.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/brand-category/brand-category.component.html -------------------------------------------------------------------------------- /src/app/component/brand-category/brand-category.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/brand-category/brand-category.component.ts -------------------------------------------------------------------------------- /src/app/component/brand-update/brand-update.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/brand-update/brand-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/brand-update/brand-update.component.html -------------------------------------------------------------------------------- /src/app/component/brand-update/brand-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/brand-update/brand-update.component.ts -------------------------------------------------------------------------------- /src/app/component/brand/brand.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/brand/brand.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/brand/brand.component.html -------------------------------------------------------------------------------- /src/app/component/brand/brand.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/brand/brand.component.ts -------------------------------------------------------------------------------- /src/app/component/car-add/car-add.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car-add/car-add.component.css -------------------------------------------------------------------------------- /src/app/component/car-add/car-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car-add/car-add.component.html -------------------------------------------------------------------------------- /src/app/component/car-add/car-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car-add/car-add.component.ts -------------------------------------------------------------------------------- /src/app/component/car-filter/car-filter.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/car-filter/car-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car-filter/car-filter.component.html -------------------------------------------------------------------------------- /src/app/component/car-filter/car-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car-filter/car-filter.component.ts -------------------------------------------------------------------------------- /src/app/component/car-update/car-update.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car-update/car-update.component.css -------------------------------------------------------------------------------- /src/app/component/car-update/car-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car-update/car-update.component.html -------------------------------------------------------------------------------- /src/app/component/car-update/car-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car-update/car-update.component.ts -------------------------------------------------------------------------------- /src/app/component/car/car-detail/car-detail.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car/car-detail/car-detail.component.css -------------------------------------------------------------------------------- /src/app/component/car/car-detail/car-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car/car-detail/car-detail.component.html -------------------------------------------------------------------------------- /src/app/component/car/car-detail/car-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car/car-detail/car-detail.component.ts -------------------------------------------------------------------------------- /src/app/component/car/car.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car/car.component.css -------------------------------------------------------------------------------- /src/app/component/car/car.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car/car.component.html -------------------------------------------------------------------------------- /src/app/component/car/car.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/car/car.component.ts -------------------------------------------------------------------------------- /src/app/component/color-add/color-add.component.css: -------------------------------------------------------------------------------- 1 | input#colorName{ 2 | width: 500px; 3 | } -------------------------------------------------------------------------------- /src/app/component/color-add/color-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color-add/color-add.component.html -------------------------------------------------------------------------------- /src/app/component/color-add/color-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color-add/color-add.component.ts -------------------------------------------------------------------------------- /src/app/component/color-list/color-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color-list/color-list.component.css -------------------------------------------------------------------------------- /src/app/component/color-list/color-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color-list/color-list.component.html -------------------------------------------------------------------------------- /src/app/component/color-list/color-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color-list/color-list.component.ts -------------------------------------------------------------------------------- /src/app/component/color-update/color-update.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color-update/color-update.component.css -------------------------------------------------------------------------------- /src/app/component/color-update/color-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color-update/color-update.component.html -------------------------------------------------------------------------------- /src/app/component/color-update/color-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color-update/color-update.component.ts -------------------------------------------------------------------------------- /src/app/component/color/color.component.css: -------------------------------------------------------------------------------- 1 | div{ 2 | margin-top: 36px; 3 | } -------------------------------------------------------------------------------- /src/app/component/color/color.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color/color.component.html -------------------------------------------------------------------------------- /src/app/component/color/color.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/color/color.component.ts -------------------------------------------------------------------------------- /src/app/component/credit-card-payment/credit-card-payment.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/credit-card-payment/credit-card-payment.component.css -------------------------------------------------------------------------------- /src/app/component/credit-card-payment/credit-card-payment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/credit-card-payment/credit-card-payment.component.html -------------------------------------------------------------------------------- /src/app/component/credit-card-payment/credit-card-payment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/credit-card-payment/credit-card-payment.component.ts -------------------------------------------------------------------------------- /src/app/component/customer/customer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/customer/customer.component.css -------------------------------------------------------------------------------- /src/app/component/customer/customer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/customer/customer.component.html -------------------------------------------------------------------------------- /src/app/component/customer/customer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/customer/customer.component.ts -------------------------------------------------------------------------------- /src/app/component/footer/footer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/footer/footer.component.css -------------------------------------------------------------------------------- /src/app/component/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/component/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/component/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/home/home.component.css -------------------------------------------------------------------------------- /src/app/component/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/home/home.component.html -------------------------------------------------------------------------------- /src/app/component/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/home/home.component.ts -------------------------------------------------------------------------------- /src/app/component/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/login/login.component.css -------------------------------------------------------------------------------- /src/app/component/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/login/login.component.html -------------------------------------------------------------------------------- /src/app/component/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/login/login.component.ts -------------------------------------------------------------------------------- /src/app/component/navi/navi.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/navi/navi.component.css -------------------------------------------------------------------------------- /src/app/component/navi/navi.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/navi/navi.component.html -------------------------------------------------------------------------------- /src/app/component/navi/navi.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/navi/navi.component.ts -------------------------------------------------------------------------------- /src/app/component/profil/profil-update/profil-update.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/profil/profil-update/profil-update.component.css -------------------------------------------------------------------------------- /src/app/component/profil/profil-update/profil-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/profil/profil-update/profil-update.component.html -------------------------------------------------------------------------------- /src/app/component/profil/profil-update/profil-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/profil/profil-update/profil-update.component.ts -------------------------------------------------------------------------------- /src/app/component/profil/profil.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/profil/profil.component.html: -------------------------------------------------------------------------------- 1 |
profil works!
2 | -------------------------------------------------------------------------------- /src/app/component/profil/profil.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/profil/profil.component.ts -------------------------------------------------------------------------------- /src/app/component/register/register.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/register/register.component.css -------------------------------------------------------------------------------- /src/app/component/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/register/register.component.html -------------------------------------------------------------------------------- /src/app/component/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/register/register.component.ts -------------------------------------------------------------------------------- /src/app/component/rental/rental.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/rental/rental.component.css -------------------------------------------------------------------------------- /src/app/component/rental/rental.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/rental/rental.component.html -------------------------------------------------------------------------------- /src/app/component/rental/rental.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/rental/rental.component.ts -------------------------------------------------------------------------------- /src/app/component/rental/rentalDetails/rental-details/rental-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/component/rental/rentalDetails/rental-details/rental-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/rental/rentalDetails/rental-details/rental-details.component.html -------------------------------------------------------------------------------- /src/app/component/rental/rentalDetails/rental-details/rental-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/component/rental/rentalDetails/rental-details/rental-details.component.ts -------------------------------------------------------------------------------- /src/app/directives/holdable.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/directives/holdable.directive.ts -------------------------------------------------------------------------------- /src/app/guard/login.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/guard/login.guard.ts -------------------------------------------------------------------------------- /src/app/interceptors/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/interceptors/auth.interceptor.ts -------------------------------------------------------------------------------- /src/app/models/brand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/brand.ts -------------------------------------------------------------------------------- /src/app/models/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/car.ts -------------------------------------------------------------------------------- /src/app/models/carDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/carDetail.ts -------------------------------------------------------------------------------- /src/app/models/carImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/carImage.ts -------------------------------------------------------------------------------- /src/app/models/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/color.ts -------------------------------------------------------------------------------- /src/app/models/customer-real.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/customer-real.ts -------------------------------------------------------------------------------- /src/app/models/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/customer.ts -------------------------------------------------------------------------------- /src/app/models/customerCreditCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/customerCreditCard.ts -------------------------------------------------------------------------------- /src/app/models/customerResponseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/customerResponseModel.ts -------------------------------------------------------------------------------- /src/app/models/itemResponseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/itemResponseModel.ts -------------------------------------------------------------------------------- /src/app/models/listResponseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/listResponseModel.ts -------------------------------------------------------------------------------- /src/app/models/loginModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/loginModel.ts -------------------------------------------------------------------------------- /src/app/models/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/payment.ts -------------------------------------------------------------------------------- /src/app/models/registerModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/registerModel.ts -------------------------------------------------------------------------------- /src/app/models/rental.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/rental.ts -------------------------------------------------------------------------------- /src/app/models/rentalDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/rentalDto.ts -------------------------------------------------------------------------------- /src/app/models/responseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/responseModel.ts -------------------------------------------------------------------------------- /src/app/models/singleResponseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/singleResponseModel.ts -------------------------------------------------------------------------------- /src/app/models/tokenModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/tokenModel.ts -------------------------------------------------------------------------------- /src/app/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/models/user.ts -------------------------------------------------------------------------------- /src/app/pipes/filter-brand-pipe.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/pipes/filter-brand-pipe.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/filter-car-pipe.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/pipes/filter-car-pipe.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/filter-color-pipe.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/pipes/filter-color-pipe.pipe.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/brand-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/brand-category.service.ts -------------------------------------------------------------------------------- /src/app/services/brand.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/brand.service.ts -------------------------------------------------------------------------------- /src/app/services/car-detail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/car-detail.service.ts -------------------------------------------------------------------------------- /src/app/services/car-image.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/car-image.service.ts -------------------------------------------------------------------------------- /src/app/services/car.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/car.service.ts -------------------------------------------------------------------------------- /src/app/services/colors.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/colors.service.ts -------------------------------------------------------------------------------- /src/app/services/customer-credit-card.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/customer-credit-card.service.ts -------------------------------------------------------------------------------- /src/app/services/customer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/customer.service.ts -------------------------------------------------------------------------------- /src/app/services/findeks-service.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/findeks-service.service.ts -------------------------------------------------------------------------------- /src/app/services/local-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/local-storage.service.ts -------------------------------------------------------------------------------- /src/app/services/payment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/payment.service.ts -------------------------------------------------------------------------------- /src/app/services/rental.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/rental.service.ts -------------------------------------------------------------------------------- /src/app/services/shared.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/shared.service.ts -------------------------------------------------------------------------------- /src/app/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/app/services/user.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/images/brands-updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/brands-updated.png -------------------------------------------------------------------------------- /src/images/brands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/brands.png -------------------------------------------------------------------------------- /src/images/car-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/car-detail.png -------------------------------------------------------------------------------- /src/images/car-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/car-update.png -------------------------------------------------------------------------------- /src/images/cars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/cars.png -------------------------------------------------------------------------------- /src/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/home.png -------------------------------------------------------------------------------- /src/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/login.png -------------------------------------------------------------------------------- /src/images/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/payment.png -------------------------------------------------------------------------------- /src/images/profil-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/profil-edit.png -------------------------------------------------------------------------------- /src/images/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/register.png -------------------------------------------------------------------------------- /src/images/rental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/images/rental.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenkerkumlucali/recap-frontend/HEAD/tslint.json --------------------------------------------------------------------------------