├── src ├── assets │ └── .gitkeep ├── app │ ├── single │ │ ├── construction │ │ │ ├── construction.component.scss │ │ │ ├── construction.component.html │ │ │ └── construction.component.ts │ │ └── not-found │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.scss │ │ │ └── not-found.component.ts │ ├── test │ │ ├── test.component.html │ │ ├── test.component.scss │ │ └── test.component.ts │ ├── todo │ │ ├── project-editing-dialog │ │ │ ├── project-editing-dialog.component.scss │ │ │ ├── project-editing-dialog.model.ts │ │ │ ├── project-editing-dialog.component.html │ │ │ └── project-editing-dialog.component.ts │ │ └── todo-home │ │ │ ├── todo.model.ts │ │ │ ├── todo-home.component.scss │ │ │ ├── todo.service.ts │ │ │ ├── todo-home.component.ts │ │ │ └── todo-home.component.html │ ├── common │ │ ├── components │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.ts │ │ │ │ └── footer.component.scss │ │ │ └── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ └── header.component.ts │ │ ├── core │ │ │ ├── logger.ts │ │ │ └── storage.ts │ │ ├── interceptors │ │ │ ├── auth.interceptor.ts │ │ │ ├── url.interceptor.ts │ │ │ ├── error-code.interceptor.ts │ │ │ └── signature.interceptor.ts │ │ └── services │ │ │ └── auth.service.ts │ ├── app.component.ts │ ├── app.routes.ts │ ├── app.config.ts │ ├── home │ │ ├── home.component.ts │ │ ├── home.component.html │ │ ├── home-data.service.ts │ │ └── home.component.scss │ └── login │ │ ├── login.component.html │ │ ├── login.service.ts │ │ ├── login.component.ts │ │ └── login.component.scss ├── favicon.ico ├── environments │ └── environment.ts ├── main.ts ├── index.html └── styles.scss ├── .stylelintrc.json ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── .eslintrc.json ├── tsconfig.app.json ├── tsconfig.spec.json ├── .editorconfig ├── .prettierrc ├── .gitignore ├── tsconfig.json ├── LICENSE ├── package.json ├── angular.json └── README.md /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/single/construction/construction.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/test/test.component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/app/todo/project-editing-dialog/project-editing-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/single/construction/construction.component.html: -------------------------------------------------------------------------------- 1 |construction works!
2 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inlym/life-helper-web/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/app/single/not-found/not-found.component.html: -------------------------------------------------------------------------------- 1 |
4 |