├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── 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.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ ├── resources │ │ ├── models │ │ │ ├── RequestLogin.ts │ │ │ └── ResponseLogin.ts │ │ └── services │ │ │ ├── alert.service.ts │ │ │ └── login.service.ts │ └── views │ │ ├── dashboard │ │ ├── dashboard-routing.module.ts │ │ ├── dashboard.component.html │ │ ├── dashboard.component.scss │ │ ├── dashboard.component.ts │ │ └── dashboard.module.ts │ │ └── login │ │ ├── login.component.html │ │ ├── login.component.scss │ │ └── login.component.ts ├── assets │ ├── .gitkeep │ └── background-car.jpg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/resources/models/RequestLogin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/resources/models/RequestLogin.ts -------------------------------------------------------------------------------- /src/app/resources/models/ResponseLogin.ts: -------------------------------------------------------------------------------- 1 | export class ResponseLogin { 2 | public jwt: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/resources/services/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/resources/services/alert.service.ts -------------------------------------------------------------------------------- /src/app/resources/services/login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/resources/services/login.service.ts -------------------------------------------------------------------------------- /src/app/views/dashboard/dashboard-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/views/dashboard/dashboard-routing.module.ts -------------------------------------------------------------------------------- /src/app/views/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- 1 |
dashboard works!
2 | -------------------------------------------------------------------------------- /src/app/views/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/views/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/views/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/views/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /src/app/views/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/views/login/login.component.html -------------------------------------------------------------------------------- /src/app/views/login/login.component.scss: -------------------------------------------------------------------------------- 1 | .card { 2 | margin-top: 4em; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/views/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/app/views/login/login.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/background-car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/assets/background-car.jpg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilsonGodoi/angular-course-carsales/HEAD/tslint.json --------------------------------------------------------------------------------