├── .browserslistrc ├── .editorconfig ├── .gitignore ├── LICENSE ├── 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 │ ├── components │ │ ├── brand-add │ │ │ ├── brand-add.component.css │ │ │ ├── brand-add.component.html │ │ │ └── brand-add.component.ts │ │ ├── brand-list │ │ │ ├── brand-list.component.css │ │ │ ├── brand-list.component.html │ │ │ └── brand-list.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-list │ │ │ ├── car-list.component.css │ │ │ ├── car-list.component.html │ │ │ └── car-list.component.ts │ │ ├── car-update │ │ │ ├── car-update.component.css │ │ │ ├── car-update.component.html │ │ │ └── car-update.component.ts │ │ ├── car │ │ │ ├── car.component.css │ │ │ ├── car.component.html │ │ │ └── car.component.ts │ │ ├── cardetail │ │ │ ├── cardetail.component.css │ │ │ ├── cardetail.component.html │ │ │ └── cardetail.component.ts │ │ ├── carimage │ │ │ ├── carimage.component.css │ │ │ ├── carimage.component.html │ │ │ └── carimage.component.ts │ │ ├── cart │ │ │ ├── cart.component.css │ │ │ ├── cart.component.html │ │ │ └── cart.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 │ │ ├── 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 │ │ ├── payment │ │ │ ├── payment.component.css │ │ │ ├── payment.component.html │ │ │ └── payment.component.ts │ │ ├── profile │ │ │ ├── profile.component.css │ │ │ ├── profile.component.html │ │ │ └── profile.component.ts │ │ ├── register │ │ │ ├── register.component.css │ │ │ ├── register.component.html │ │ │ └── register.component.ts │ │ ├── rental-add │ │ │ ├── rental-add.component.css │ │ │ ├── rental-add.component.html │ │ │ └── rental-add.component.ts │ │ ├── rental-period │ │ │ ├── rental-period.component.css │ │ │ ├── rental-period.component.html │ │ │ └── rental-period.component.ts │ │ └── rental │ │ │ ├── rental.component.css │ │ │ ├── rental.component.html │ │ │ └── rental.component.ts │ ├── directives │ │ └── home-card-color.directive.ts │ ├── guards │ │ └── login.guard.ts │ ├── interceptors │ │ └── auth.interceptor.ts │ ├── models │ │ ├── authModel.ts │ │ ├── brand.ts │ │ ├── car.ts │ │ ├── card.ts │ │ ├── carimage.ts │ │ ├── cart.ts │ │ ├── color.ts │ │ ├── customer.ts │ │ ├── payment.ts │ │ ├── rental.ts │ │ ├── responseModel.ts │ │ ├── tokenModel.ts │ │ └── user.ts │ ├── pipes │ │ ├── brand-filter.pipe.ts │ │ ├── car-filter.pipe.ts │ │ ├── color-filter.pipe.ts │ │ └── rental-filter.pipe.ts │ └── services │ │ ├── auth.service.ts │ │ ├── brand.service.ts │ │ ├── car.service.ts │ │ ├── carimage.service.ts │ │ ├── cart.service.ts │ │ ├── color.service.ts │ │ ├── customer.service.ts │ │ ├── findex.service.ts │ │ ├── payment.service.ts │ │ ├── rental.service.ts │ │ ├── storage.service.ts │ │ └── user.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── 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/aerdogan/recap-frontend/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/brand-add/brand-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/brand-add/brand-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand-add/brand-add.component.html -------------------------------------------------------------------------------- /src/app/components/brand-add/brand-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand-add/brand-add.component.ts -------------------------------------------------------------------------------- /src/app/components/brand-list/brand-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand-list/brand-list.component.css -------------------------------------------------------------------------------- /src/app/components/brand-list/brand-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand-list/brand-list.component.html -------------------------------------------------------------------------------- /src/app/components/brand-list/brand-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand-list/brand-list.component.ts -------------------------------------------------------------------------------- /src/app/components/brand-update/brand-update.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/brand-update/brand-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand-update/brand-update.component.html -------------------------------------------------------------------------------- /src/app/components/brand-update/brand-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand-update/brand-update.component.ts -------------------------------------------------------------------------------- /src/app/components/brand/brand.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/brand/brand.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand/brand.component.html -------------------------------------------------------------------------------- /src/app/components/brand/brand.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/brand/brand.component.ts -------------------------------------------------------------------------------- /src/app/components/car-add/car-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/car-add/car-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car-add/car-add.component.html -------------------------------------------------------------------------------- /src/app/components/car-add/car-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car-add/car-add.component.ts -------------------------------------------------------------------------------- /src/app/components/car-list/car-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car-list/car-list.component.css -------------------------------------------------------------------------------- /src/app/components/car-list/car-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car-list/car-list.component.html -------------------------------------------------------------------------------- /src/app/components/car-list/car-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car-list/car-list.component.ts -------------------------------------------------------------------------------- /src/app/components/car-update/car-update.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/car-update/car-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car-update/car-update.component.html -------------------------------------------------------------------------------- /src/app/components/car-update/car-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car-update/car-update.component.ts -------------------------------------------------------------------------------- /src/app/components/car/car.component.css: -------------------------------------------------------------------------------- 1 | .table-hover{ 2 | cursor:pointer; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/car/car.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car/car.component.html -------------------------------------------------------------------------------- /src/app/components/car/car.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/car/car.component.ts -------------------------------------------------------------------------------- /src/app/components/cardetail/cardetail.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/cardetail/cardetail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/cardetail/cardetail.component.html -------------------------------------------------------------------------------- /src/app/components/cardetail/cardetail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/cardetail/cardetail.component.ts -------------------------------------------------------------------------------- /src/app/components/carimage/carimage.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/carimage/carimage.component.css -------------------------------------------------------------------------------- /src/app/components/carimage/carimage.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/carimage/carimage.component.html -------------------------------------------------------------------------------- /src/app/components/carimage/carimage.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/carimage/carimage.component.ts -------------------------------------------------------------------------------- /src/app/components/cart/cart.component.css: -------------------------------------------------------------------------------- 1 | td { 2 | vertical-align: middle; 3 | } -------------------------------------------------------------------------------- /src/app/components/cart/cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/cart/cart.component.html -------------------------------------------------------------------------------- /src/app/components/cart/cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/cart/cart.component.ts -------------------------------------------------------------------------------- /src/app/components/color-add/color-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/color-add/color-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color-add/color-add.component.html -------------------------------------------------------------------------------- /src/app/components/color-add/color-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color-add/color-add.component.ts -------------------------------------------------------------------------------- /src/app/components/color-list/color-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color-list/color-list.component.css -------------------------------------------------------------------------------- /src/app/components/color-list/color-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color-list/color-list.component.html -------------------------------------------------------------------------------- /src/app/components/color-list/color-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color-list/color-list.component.ts -------------------------------------------------------------------------------- /src/app/components/color-update/color-update.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/color-update/color-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color-update/color-update.component.html -------------------------------------------------------------------------------- /src/app/components/color-update/color-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color-update/color-update.component.ts -------------------------------------------------------------------------------- /src/app/components/color/color.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/color/color.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color/color.component.html -------------------------------------------------------------------------------- /src/app/components/color/color.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/color/color.component.ts -------------------------------------------------------------------------------- /src/app/components/customer/customer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/customer/customer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/customer/customer.component.html -------------------------------------------------------------------------------- /src/app/components/customer/customer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/customer/customer.component.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/home/home.component.css -------------------------------------------------------------------------------- /src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.css: -------------------------------------------------------------------------------- 1 | .form-signin { 2 | margin-top: 5em; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/navi/navi.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/navi/navi.component.css -------------------------------------------------------------------------------- /src/app/components/navi/navi.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/navi/navi.component.html -------------------------------------------------------------------------------- /src/app/components/navi/navi.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/navi/navi.component.ts -------------------------------------------------------------------------------- /src/app/components/payment/payment.component.css: -------------------------------------------------------------------------------- 1 | .mouse { 2 | cursor: pointer; 3 | } -------------------------------------------------------------------------------- /src/app/components/payment/payment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/payment/payment.component.html -------------------------------------------------------------------------------- /src/app/components/payment/payment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/payment/payment.component.ts -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/components/register/register.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/register/register.component.css -------------------------------------------------------------------------------- /src/app/components/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/register/register.component.html -------------------------------------------------------------------------------- /src/app/components/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/register/register.component.ts -------------------------------------------------------------------------------- /src/app/components/rental-add/rental-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/rental-add/rental-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/rental-add/rental-add.component.html -------------------------------------------------------------------------------- /src/app/components/rental-add/rental-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/rental-add/rental-add.component.ts -------------------------------------------------------------------------------- /src/app/components/rental-period/rental-period.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/rental-period/rental-period.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/rental-period/rental-period.component.html -------------------------------------------------------------------------------- /src/app/components/rental-period/rental-period.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/rental-period/rental-period.component.ts -------------------------------------------------------------------------------- /src/app/components/rental/rental.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/rental/rental.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/rental/rental.component.html -------------------------------------------------------------------------------- /src/app/components/rental/rental.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/components/rental/rental.component.ts -------------------------------------------------------------------------------- /src/app/directives/home-card-color.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/directives/home-card-color.directive.ts -------------------------------------------------------------------------------- /src/app/guards/login.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/guards/login.guard.ts -------------------------------------------------------------------------------- /src/app/interceptors/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/interceptors/auth.interceptor.ts -------------------------------------------------------------------------------- /src/app/models/authModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/authModel.ts -------------------------------------------------------------------------------- /src/app/models/brand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/brand.ts -------------------------------------------------------------------------------- /src/app/models/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/car.ts -------------------------------------------------------------------------------- /src/app/models/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/card.ts -------------------------------------------------------------------------------- /src/app/models/carimage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/carimage.ts -------------------------------------------------------------------------------- /src/app/models/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/cart.ts -------------------------------------------------------------------------------- /src/app/models/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/color.ts -------------------------------------------------------------------------------- /src/app/models/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/customer.ts -------------------------------------------------------------------------------- /src/app/models/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/payment.ts -------------------------------------------------------------------------------- /src/app/models/rental.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/rental.ts -------------------------------------------------------------------------------- /src/app/models/responseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/responseModel.ts -------------------------------------------------------------------------------- /src/app/models/tokenModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/tokenModel.ts -------------------------------------------------------------------------------- /src/app/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/models/user.ts -------------------------------------------------------------------------------- /src/app/pipes/brand-filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/pipes/brand-filter.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/car-filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/pipes/car-filter.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/color-filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/pipes/color-filter.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/rental-filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/pipes/rental-filter.pipe.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/brand.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/brand.service.ts -------------------------------------------------------------------------------- /src/app/services/car.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/car.service.ts -------------------------------------------------------------------------------- /src/app/services/carimage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/carimage.service.ts -------------------------------------------------------------------------------- /src/app/services/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/cart.service.ts -------------------------------------------------------------------------------- /src/app/services/color.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/color.service.ts -------------------------------------------------------------------------------- /src/app/services/customer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/customer.service.ts -------------------------------------------------------------------------------- /src/app/services/findex.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/findex.service.ts -------------------------------------------------------------------------------- /src/app/services/payment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/payment.service.ts -------------------------------------------------------------------------------- /src/app/services/rental.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/rental.service.ts -------------------------------------------------------------------------------- /src/app/services/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/app/services/storage.service.ts -------------------------------------------------------------------------------- /src/app/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/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/aerdogan/recap-frontend/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerdogan/recap-frontend/HEAD/tslint.json --------------------------------------------------------------------------------