├── .DS_Store ├── README.md └── myApp ├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── documentation.md ├── package-lock.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.interceptor.spec.ts │ ├── app.interceptor.ts │ ├── app.module.ts │ ├── authenticated │ │ ├── authenticated.component.css │ │ ├── authenticated.component.html │ │ ├── authenticated.component.spec.ts │ │ └── authenticated.component.ts │ ├── autos │ │ ├── api.service.spec.ts │ │ ├── api.service.ts │ │ ├── autos-routing.module.ts │ │ ├── autos.module.ts │ │ ├── catalog │ │ │ ├── catalog.component.css │ │ │ ├── catalog.component.html │ │ │ ├── catalog.component.spec.ts │ │ │ └── catalog.component.ts │ │ ├── contacts │ │ │ ├── contacts.component.css │ │ │ ├── contacts.component.html │ │ │ ├── contacts.component.spec.ts │ │ │ └── contacts.component.ts │ │ ├── create-auto │ │ │ ├── create-auto.component.css │ │ │ ├── create-auto.component.html │ │ │ ├── create-auto.component.spec.ts │ │ │ └── create-auto.component.ts │ │ ├── details │ │ │ ├── details.component.css │ │ │ ├── details.component.html │ │ │ ├── details.component.spec.ts │ │ │ └── details.component.ts │ │ └── edit │ │ │ ├── edit.component.css │ │ │ ├── edit.component.html │ │ │ ├── edit.component.spec.ts │ │ │ └── edit.component.ts │ ├── core │ │ ├── core.module.ts │ │ ├── footer │ │ │ ├── footer.component.css │ │ │ ├── footer.component.html │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── guards │ │ │ ├── auth-activate.ts │ │ │ └── isOwner.ts │ │ └── navigation │ │ │ ├── navigation.component.css │ │ │ ├── navigation.component.html │ │ │ ├── navigation.component.spec.ts │ │ │ └── navigation.component.ts │ ├── environment │ │ └── environment.ts │ ├── error │ │ ├── error.component.css │ │ ├── error.component.html │ │ ├── error.component.spec.ts │ │ └── error.component.ts │ ├── home │ │ ├── home.component.css │ │ ├── home.component.html │ │ ├── home.component.spec.ts │ │ └── home.component.ts │ ├── not-found │ │ ├── not-found.component.css │ │ ├── not-found.component.html │ │ ├── not-found.component.spec.ts │ │ └── not-found.component.ts │ ├── search │ │ ├── search.component.css │ │ ├── search.component.html │ │ ├── search.component.spec.ts │ │ └── search.component.ts │ ├── shared │ │ ├── elapsed-time.pipe.spec.ts │ │ ├── elapsed-time.pipe.ts │ │ ├── emailDomains.ts │ │ ├── loader │ │ │ ├── loader.component.css │ │ │ ├── loader.component.html │ │ │ ├── loader.component.spec.ts │ │ │ └── loader.component.ts │ │ ├── shared.module.ts │ │ └── validators │ │ │ ├── app-email-validator.ts │ │ │ ├── email.directive.spec.ts │ │ │ └── email.directive.ts │ ├── types │ │ ├── Auto.ts │ │ ├── Comment.ts │ │ ├── like.ts │ │ ├── user.ts │ │ └── userDetails.ts │ └── user │ │ ├── login │ │ ├── login.component.css │ │ ├── login.component.html │ │ ├── login.component.spec.ts │ │ └── login.component.ts │ │ ├── profile │ │ ├── profile.component.css │ │ ├── profile.component.html │ │ ├── profile.component.spec.ts │ │ └── profile.component.ts │ │ ├── register │ │ ├── register.component.css │ │ ├── register.component.html │ │ ├── register.component.spec.ts │ │ └── register.component.ts │ │ ├── user-routing.module.ts │ │ ├── user.module.ts │ │ ├── user.service.spec.ts │ │ └── user.service.ts ├── assets │ ├── .gitkeep │ ├── error.png │ ├── like.png │ ├── profile.png │ ├── pxfuel.jpg │ ├── screenshots │ │ ├── scr1.png │ │ ├── scr10.png │ │ ├── scr11.png │ │ ├── scr2.png │ │ ├── scr3.png │ │ ├── scr4.png │ │ ├── scr5.png │ │ ├── scr6.png │ │ ├── scr7.png │ │ ├── scr8.png │ │ └── scr9.png │ ├── successful.png │ └── unlike.png ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/README.md -------------------------------------------------------------------------------- /myApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/.editorconfig -------------------------------------------------------------------------------- /myApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/.gitignore -------------------------------------------------------------------------------- /myApp/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/.vscode/extensions.json -------------------------------------------------------------------------------- /myApp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/.vscode/launch.json -------------------------------------------------------------------------------- /myApp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/.vscode/tasks.json -------------------------------------------------------------------------------- /myApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/README.md -------------------------------------------------------------------------------- /myApp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/angular.json -------------------------------------------------------------------------------- /myApp/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/documentation.md -------------------------------------------------------------------------------- /myApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/package-lock.json -------------------------------------------------------------------------------- /myApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/package.json -------------------------------------------------------------------------------- /myApp/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /myApp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/app.component.css -------------------------------------------------------------------------------- /myApp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/app.component.html -------------------------------------------------------------------------------- /myApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/app.component.ts -------------------------------------------------------------------------------- /myApp/src/app/app.interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/app.interceptor.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/app.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/app.interceptor.ts -------------------------------------------------------------------------------- /myApp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/app.module.ts -------------------------------------------------------------------------------- /myApp/src/app/authenticated/authenticated.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myApp/src/app/authenticated/authenticated.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/authenticated/authenticated.component.html -------------------------------------------------------------------------------- /myApp/src/app/authenticated/authenticated.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/authenticated/authenticated.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/authenticated/authenticated.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/authenticated/authenticated.component.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/api.service.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/api.service.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/autos-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/autos-routing.module.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/autos.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/autos.module.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/catalog/catalog.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/catalog/catalog.component.css -------------------------------------------------------------------------------- /myApp/src/app/autos/catalog/catalog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/catalog/catalog.component.html -------------------------------------------------------------------------------- /myApp/src/app/autos/catalog/catalog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/catalog/catalog.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/catalog/catalog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/catalog/catalog.component.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/contacts/contacts.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/contacts/contacts.component.css -------------------------------------------------------------------------------- /myApp/src/app/autos/contacts/contacts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/contacts/contacts.component.html -------------------------------------------------------------------------------- /myApp/src/app/autos/contacts/contacts.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/contacts/contacts.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/contacts/contacts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/contacts/contacts.component.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/create-auto/create-auto.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/create-auto/create-auto.component.css -------------------------------------------------------------------------------- /myApp/src/app/autos/create-auto/create-auto.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/create-auto/create-auto.component.html -------------------------------------------------------------------------------- /myApp/src/app/autos/create-auto/create-auto.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/create-auto/create-auto.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/create-auto/create-auto.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/create-auto/create-auto.component.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/details/details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/details/details.component.css -------------------------------------------------------------------------------- /myApp/src/app/autos/details/details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/details/details.component.html -------------------------------------------------------------------------------- /myApp/src/app/autos/details/details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/details/details.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/details/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/details/details.component.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/edit/edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/edit/edit.component.css -------------------------------------------------------------------------------- /myApp/src/app/autos/edit/edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/edit/edit.component.html -------------------------------------------------------------------------------- /myApp/src/app/autos/edit/edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/edit/edit.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/autos/edit/edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/autos/edit/edit.component.ts -------------------------------------------------------------------------------- /myApp/src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/core.module.ts -------------------------------------------------------------------------------- /myApp/src/app/core/footer/footer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/footer/footer.component.css -------------------------------------------------------------------------------- /myApp/src/app/core/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/footer/footer.component.html -------------------------------------------------------------------------------- /myApp/src/app/core/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/core/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/footer/footer.component.ts -------------------------------------------------------------------------------- /myApp/src/app/core/guards/auth-activate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/guards/auth-activate.ts -------------------------------------------------------------------------------- /myApp/src/app/core/guards/isOwner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/guards/isOwner.ts -------------------------------------------------------------------------------- /myApp/src/app/core/navigation/navigation.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/navigation/navigation.component.css -------------------------------------------------------------------------------- /myApp/src/app/core/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/navigation/navigation.component.html -------------------------------------------------------------------------------- /myApp/src/app/core/navigation/navigation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/navigation/navigation.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/core/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/core/navigation/navigation.component.ts -------------------------------------------------------------------------------- /myApp/src/app/environment/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/environment/environment.ts -------------------------------------------------------------------------------- /myApp/src/app/error/error.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/error/error.component.css -------------------------------------------------------------------------------- /myApp/src/app/error/error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/error/error.component.html -------------------------------------------------------------------------------- /myApp/src/app/error/error.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/error/error.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/error/error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/error/error.component.ts -------------------------------------------------------------------------------- /myApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/home/home.component.css -------------------------------------------------------------------------------- /myApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/home/home.component.html -------------------------------------------------------------------------------- /myApp/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/home/home.component.ts -------------------------------------------------------------------------------- /myApp/src/app/not-found/not-found.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/not-found/not-found.component.css -------------------------------------------------------------------------------- /myApp/src/app/not-found/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/not-found/not-found.component.html -------------------------------------------------------------------------------- /myApp/src/app/not-found/not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/not-found/not-found.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/not-found/not-found.component.ts -------------------------------------------------------------------------------- /myApp/src/app/search/search.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/search/search.component.css -------------------------------------------------------------------------------- /myApp/src/app/search/search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/search/search.component.html -------------------------------------------------------------------------------- /myApp/src/app/search/search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/search/search.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/search/search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/search/search.component.ts -------------------------------------------------------------------------------- /myApp/src/app/shared/elapsed-time.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/elapsed-time.pipe.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/shared/elapsed-time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/elapsed-time.pipe.ts -------------------------------------------------------------------------------- /myApp/src/app/shared/emailDomains.ts: -------------------------------------------------------------------------------- 1 | export const EMAIL_DOMAINS = ['bg', 'com'] -------------------------------------------------------------------------------- /myApp/src/app/shared/loader/loader.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/loader/loader.component.css -------------------------------------------------------------------------------- /myApp/src/app/shared/loader/loader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/loader/loader.component.html -------------------------------------------------------------------------------- /myApp/src/app/shared/loader/loader.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/loader/loader.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/shared/loader/loader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/loader/loader.component.ts -------------------------------------------------------------------------------- /myApp/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /myApp/src/app/shared/validators/app-email-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/validators/app-email-validator.ts -------------------------------------------------------------------------------- /myApp/src/app/shared/validators/email.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/validators/email.directive.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/shared/validators/email.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/shared/validators/email.directive.ts -------------------------------------------------------------------------------- /myApp/src/app/types/Auto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/types/Auto.ts -------------------------------------------------------------------------------- /myApp/src/app/types/Comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/types/Comment.ts -------------------------------------------------------------------------------- /myApp/src/app/types/like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/types/like.ts -------------------------------------------------------------------------------- /myApp/src/app/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/types/user.ts -------------------------------------------------------------------------------- /myApp/src/app/types/userDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/types/userDetails.ts -------------------------------------------------------------------------------- /myApp/src/app/user/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/login/login.component.css -------------------------------------------------------------------------------- /myApp/src/app/user/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/login/login.component.html -------------------------------------------------------------------------------- /myApp/src/app/user/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/login/login.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/user/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/login/login.component.ts -------------------------------------------------------------------------------- /myApp/src/app/user/profile/profile.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/profile/profile.component.css -------------------------------------------------------------------------------- /myApp/src/app/user/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/profile/profile.component.html -------------------------------------------------------------------------------- /myApp/src/app/user/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/user/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/profile/profile.component.ts -------------------------------------------------------------------------------- /myApp/src/app/user/register/register.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/register/register.component.css -------------------------------------------------------------------------------- /myApp/src/app/user/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/register/register.component.html -------------------------------------------------------------------------------- /myApp/src/app/user/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/register/register.component.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/user/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/register/register.component.ts -------------------------------------------------------------------------------- /myApp/src/app/user/user-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/user-routing.module.ts -------------------------------------------------------------------------------- /myApp/src/app/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/user.module.ts -------------------------------------------------------------------------------- /myApp/src/app/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/user.service.spec.ts -------------------------------------------------------------------------------- /myApp/src/app/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/app/user/user.service.ts -------------------------------------------------------------------------------- /myApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myApp/src/assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/error.png -------------------------------------------------------------------------------- /myApp/src/assets/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/like.png -------------------------------------------------------------------------------- /myApp/src/assets/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/profile.png -------------------------------------------------------------------------------- /myApp/src/assets/pxfuel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/pxfuel.jpg -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr1.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr10.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr11.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr2.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr3.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr4.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr5.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr6.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr7.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr8.png -------------------------------------------------------------------------------- /myApp/src/assets/screenshots/scr9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/screenshots/scr9.png -------------------------------------------------------------------------------- /myApp/src/assets/successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/successful.png -------------------------------------------------------------------------------- /myApp/src/assets/unlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/assets/unlike.png -------------------------------------------------------------------------------- /myApp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/favicon.ico -------------------------------------------------------------------------------- /myApp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/index.html -------------------------------------------------------------------------------- /myApp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/main.ts -------------------------------------------------------------------------------- /myApp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/src/styles.css -------------------------------------------------------------------------------- /myApp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/tsconfig.app.json -------------------------------------------------------------------------------- /myApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/tsconfig.json -------------------------------------------------------------------------------- /myApp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Upwork-Job32/Best-Car.Angular_project/HEAD/myApp/tsconfig.spec.json --------------------------------------------------------------------------------