├── src
├── assets
│ ├── .gitkeep
│ └── images
│ │ └── flame.png
├── environments
│ ├── environment.prod.ts
│ └── environment.ts
├── app
│ ├── auth
│ │ ├── login
│ │ │ ├── login.component.scss
│ │ │ ├── login.component.html
│ │ │ └── login.component.ts
│ │ └── signup
│ │ │ ├── signup.component.scss
│ │ │ ├── signup.component.html
│ │ │ └── signup.component.ts
│ ├── app.component.html
│ ├── app.component.scss
│ ├── app.component.ts
│ ├── models
│ │ └── Sauce.model.ts
│ ├── sauce-form
│ │ ├── sauce-form.component.scss
│ │ ├── sauce-form.component.html
│ │ └── sauce-form.component.ts
│ ├── interceptors
│ │ └── auth-interceptor.ts
│ ├── sauce-list
│ │ ├── sauce-list.component.scss
│ │ ├── sauce-list.component.html
│ │ └── sauce-list.component.ts
│ ├── header
│ │ ├── header.component.ts
│ │ ├── header.component.html
│ │ └── header.component.scss
│ ├── services
│ │ ├── auth-guard.service.ts
│ │ ├── auth.service.ts
│ │ └── sauces.service.ts
│ ├── single-sauce
│ │ ├── single-sauce.component.scss
│ │ ├── single-sauce.component.html
│ │ └── single-sauce.component.ts
│ ├── app-routing.module.ts
│ └── app.module.ts
├── favicon.ico
├── colors.scss
├── styles.scss
├── main.ts
├── test.ts
├── index.html
└── polyfills.ts
├── .vscode
├── extensions.json
├── launch.json
└── tasks.json
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── .browserslistrc
├── .gitignore
├── tsconfig.json
├── README.md
├── package.json
├── karma.conf.js
└── angular.json
/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/src/app/auth/login/login.component.scss:
--------------------------------------------------------------------------------
1 | form {
2 | margin: 2em auto;
3 | max-width: 750px;
4 | }
5 |
--------------------------------------------------------------------------------
/src/app/auth/signup/signup.component.scss:
--------------------------------------------------------------------------------
1 | form {
2 | margin: 2em auto;
3 | max-width: 750px;
4 | }
5 |
--------------------------------------------------------------------------------
/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenClassrooms-Student-Center/Web-Developer-P6/HEAD/src/favicon.ico
--------------------------------------------------------------------------------
/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
4 | No sauces to display! 5 |
6 |0">THE SAUCES
7 |Heat: {{ sauce.heat }}/10
12 |by {{ sauce?.manufacturer }}
7 |{{ sauce.description }}
9 | 19 |