├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .vscode └── launch.json ├── 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.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── brand │ │ │ ├── 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.component.css │ │ │ ├── brand.component.html │ │ │ └── brand.component.ts │ │ ├── car-detail │ │ │ ├── car-detail.component.css │ │ │ ├── car-detail.component.html │ │ │ └── car-detail.component.ts │ │ ├── car │ │ │ ├── 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.component.css │ │ │ ├── car.component.html │ │ │ └── car.component.ts │ │ ├── color │ │ │ ├── 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.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.spec.ts │ │ │ └── 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 │ │ │ └── user-menu │ │ │ │ ├── user-menu.component.css │ │ │ │ ├── user-menu.component.html │ │ │ │ └── user-menu.component.ts │ │ ├── payment │ │ │ ├── card-saved │ │ │ │ ├── card-saved.component.css │ │ │ │ ├── card-saved.component.html │ │ │ │ └── card-saved.component.ts │ │ │ ├── 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 │ │ │ ├── rental.component.css │ │ │ ├── rental.component.html │ │ │ └── rental.component.ts │ ├── guards │ │ └── login.guard.ts │ ├── interceptors │ │ └── auth.interceptor.ts │ ├── models │ │ ├── brand │ │ │ └── brand.ts │ │ ├── car │ │ │ ├── car.ts │ │ │ └── carDetail.ts │ │ ├── carImage │ │ │ └── carImage.ts │ │ ├── color │ │ │ └── color.ts │ │ ├── customer │ │ │ └── customer.ts │ │ ├── listResponseModel.ts │ │ ├── login │ │ │ └── loginModel.ts │ │ ├── payment │ │ │ └── payment.ts │ │ ├── register │ │ │ └── registerModel.ts │ │ ├── rental │ │ │ ├── rental.ts │ │ │ └── rentalDetail.ts │ │ ├── responseModel.ts │ │ ├── singleResponseModel.ts │ │ └── token │ │ │ └── tokenModel.ts │ ├── pipes │ │ ├── filter-brand.pipe.ts │ │ ├── filter-car.pipe.ts │ │ ├── filter-color.pipe.ts │ │ └── vat-added.pipe.ts │ └── services │ │ ├── auth.service.ts │ │ ├── brand.service.ts │ │ ├── car-image.service.ts │ │ ├── car.service.ts │ │ ├── color.service.ts │ │ ├── customer.service.ts │ │ ├── local-storage.service.ts │ │ ├── payment.service.ts │ │ └── rental.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/rzayevsahil/RecapProjectFrontend/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/brand/brand-add/brand-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/brand/brand-add/brand-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/brand/brand-add/brand-add.component.html -------------------------------------------------------------------------------- /src/app/components/brand/brand-add/brand-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/brand/brand-add/brand-add.component.ts -------------------------------------------------------------------------------- /src/app/components/brand/brand-list/brand-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/brand/brand-list/brand-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/brand/brand-list/brand-list.component.html -------------------------------------------------------------------------------- /src/app/components/brand/brand-list/brand-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/brand/brand-list/brand-list.component.ts -------------------------------------------------------------------------------- /src/app/components/brand/brand-update/brand-update.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/brand/brand-update/brand-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/brand/brand-update/brand-update.component.html -------------------------------------------------------------------------------- /src/app/components/brand/brand-update/brand-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/brand/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/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/brand/brand.component.html -------------------------------------------------------------------------------- /src/app/components/brand/brand.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/brand/brand.component.ts -------------------------------------------------------------------------------- /src/app/components/car-detail/car-detail.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/car-detail/car-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car-detail/car-detail.component.html -------------------------------------------------------------------------------- /src/app/components/car-detail/car-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car-detail/car-detail.component.ts -------------------------------------------------------------------------------- /src/app/components/car/car-add/car-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/car/car-add/car-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car-add/car-add.component.html -------------------------------------------------------------------------------- /src/app/components/car/car-add/car-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car-add/car-add.component.ts -------------------------------------------------------------------------------- /src/app/components/car/car-list/car-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/car/car-list/car-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car-list/car-list.component.html -------------------------------------------------------------------------------- /src/app/components/car/car-list/car-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car-list/car-list.component.ts -------------------------------------------------------------------------------- /src/app/components/car/car-update/car-update.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/car/car-update/car-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car-update/car-update.component.html -------------------------------------------------------------------------------- /src/app/components/car/car-update/car-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car-update/car-update.component.ts -------------------------------------------------------------------------------- /src/app/components/car/car.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car.component.css -------------------------------------------------------------------------------- /src/app/components/car/car.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car.component.html -------------------------------------------------------------------------------- /src/app/components/car/car.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/car/car.component.ts -------------------------------------------------------------------------------- /src/app/components/color/color-add/color-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/color/color-add/color-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/color/color-add/color-add.component.html -------------------------------------------------------------------------------- /src/app/components/color/color-add/color-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/color/color-add/color-add.component.ts -------------------------------------------------------------------------------- /src/app/components/color/color-list/color-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/color/color-list/color-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/color/color-list/color-list.component.html -------------------------------------------------------------------------------- /src/app/components/color/color-list/color-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/color/color-list/color-list.component.ts -------------------------------------------------------------------------------- /src/app/components/color/color-update/color-update.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/color/color-update/color-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/color/color-update/color-update.component.html -------------------------------------------------------------------------------- /src/app/components/color/color-update/color-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/color/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/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/color/color.component.html -------------------------------------------------------------------------------- /src/app/components/color/color.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/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/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/customer/customer.component.html -------------------------------------------------------------------------------- /src/app/components/customer/customer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/customer/customer.component.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/footer/footer.component.css -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/home/home.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/login/login.component.css -------------------------------------------------------------------------------- /src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/navi/navi.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/navi/navi.component.css -------------------------------------------------------------------------------- /src/app/components/navi/navi.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/navi/navi.component.html -------------------------------------------------------------------------------- /src/app/components/navi/navi.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/navi/navi.component.ts -------------------------------------------------------------------------------- /src/app/components/navi/user-menu/user-menu.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/navi/user-menu/user-menu.component.html: -------------------------------------------------------------------------------- 1 |

user-menu works!

2 | -------------------------------------------------------------------------------- /src/app/components/navi/user-menu/user-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/navi/user-menu/user-menu.component.ts -------------------------------------------------------------------------------- /src/app/components/payment/card-saved/card-saved.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/payment/card-saved/card-saved.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/payment/card-saved/card-saved.component.html -------------------------------------------------------------------------------- /src/app/components/payment/card-saved/card-saved.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/payment/card-saved/card-saved.component.ts -------------------------------------------------------------------------------- /src/app/components/payment/payment.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/payment/payment.component.css -------------------------------------------------------------------------------- /src/app/components/payment/payment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/payment/payment.component.html -------------------------------------------------------------------------------- /src/app/components/payment/payment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/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/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/components/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/register/register.component.html -------------------------------------------------------------------------------- /src/app/components/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/register/register.component.ts -------------------------------------------------------------------------------- /src/app/components/rental/rental.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/rental/rental.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/rental/rental.component.html -------------------------------------------------------------------------------- /src/app/components/rental/rental.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/components/rental/rental.component.ts -------------------------------------------------------------------------------- /src/app/guards/login.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/guards/login.guard.ts -------------------------------------------------------------------------------- /src/app/interceptors/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/interceptors/auth.interceptor.ts -------------------------------------------------------------------------------- /src/app/models/brand/brand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/brand/brand.ts -------------------------------------------------------------------------------- /src/app/models/car/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/car/car.ts -------------------------------------------------------------------------------- /src/app/models/car/carDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/car/carDetail.ts -------------------------------------------------------------------------------- /src/app/models/carImage/carImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/carImage/carImage.ts -------------------------------------------------------------------------------- /src/app/models/color/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/color/color.ts -------------------------------------------------------------------------------- /src/app/models/customer/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/customer/customer.ts -------------------------------------------------------------------------------- /src/app/models/listResponseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/listResponseModel.ts -------------------------------------------------------------------------------- /src/app/models/login/loginModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/login/loginModel.ts -------------------------------------------------------------------------------- /src/app/models/payment/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/payment/payment.ts -------------------------------------------------------------------------------- /src/app/models/register/registerModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/register/registerModel.ts -------------------------------------------------------------------------------- /src/app/models/rental/rental.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/rental/rental.ts -------------------------------------------------------------------------------- /src/app/models/rental/rentalDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/rental/rentalDetail.ts -------------------------------------------------------------------------------- /src/app/models/responseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/responseModel.ts -------------------------------------------------------------------------------- /src/app/models/singleResponseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/singleResponseModel.ts -------------------------------------------------------------------------------- /src/app/models/token/tokenModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/models/token/tokenModel.ts -------------------------------------------------------------------------------- /src/app/pipes/filter-brand.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/pipes/filter-brand.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/filter-car.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/pipes/filter-car.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/filter-color.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/pipes/filter-color.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/vat-added.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/pipes/vat-added.pipe.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/brand.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/brand.service.ts -------------------------------------------------------------------------------- /src/app/services/car-image.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/car-image.service.ts -------------------------------------------------------------------------------- /src/app/services/car.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/car.service.ts -------------------------------------------------------------------------------- /src/app/services/color.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/color.service.ts -------------------------------------------------------------------------------- /src/app/services/customer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/customer.service.ts -------------------------------------------------------------------------------- /src/app/services/local-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/local-storage.service.ts -------------------------------------------------------------------------------- /src/app/services/payment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/payment.service.ts -------------------------------------------------------------------------------- /src/app/services/rental.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/app/services/rental.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/rzayevsahil/RecapProjectFrontend/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/RecapProjectFrontend/HEAD/tslint.json --------------------------------------------------------------------------------