Within the download you'll find the following directories and files:
├── LICENSE
├── README.md
├── angular.json
├── e2e
├── package-lock.json
├── package.json
├── src
│ ├── app
│ │ ├── about
│ │ │ ├── about-home
│ │ │ │ ├── about-home.component.css
│ │ │ │ ├── about-home.component.html
│ │ │ │ ├── about-home.component.spec.ts
│ │ │ │ └── about-home.component.ts
│ │ │ ├── about-routing.module.ts
│ │ │ └── about.module.ts
│ │ ├── account
│ │ │ ├── account-routing.module.ts
│ │ │ ├── account.module.ts
│ │ │ ├── change-password
│ │ │ │ ├── change-password.component.css
│ │ │ │ ├── change-password.component.html
│ │ │ │ └── change-password.component.ts
│ │ │ ├── profile
│ │ │ │ ├── profile.component.css
│ │ │ │ ├── profile.component.html
│ │ │ │ └── profile.component.ts
│ │ │ └── profile-details
│ │ │ ├── profile-details.component.css
│ │ │ ├── profile-details.component.html
│ │ │ └── profile-details.component.ts
│ │ ├── app-routing.module.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── auth
│ │ │ ├── auth-routing.module.ts
│ │ │ ├── auth.module.ts
│ │ │ ├── login
│ │ │ │ ├── login.component.css
│ │ │ │ ├── login.component.html
│ │ │ │ └── login.component.ts
│ │ │ ├── password-reset
│ │ │ │ ├── password-reset.component.css
│ │ │ │ ├── password-reset.component.html
│ │ │ │ └── password-reset.component.ts
│ │ │ └── password-reset-request
│ │ │ ├── password-reset-request.component.css
│ │ │ ├── password-reset-request.component.html
│ │ │ └── password-reset-request.component.ts
│ │ ├── core
│ │ │ ├── core.module.ts
│ │ │ ├── guards
│ │ │ │ ├── admin.guard.spec.ts
│ │ │ │ ├── admin.guard.ts
│ │ │ │ ├── auth.guard.spec.ts
│ │ │ │ ├── auth.guard.ts
│ │ │ │ └── module-import.guard.ts
│ │ │ ├── interceptors
│ │ │ │ ├── auth.interceptor.ts
│ │ │ │ └── spinner.interceptor.ts
│ │ │ └── services
│ │ │ ├── auth.service.ts
│ │ │ ├── globar-error.handler.ts
│ │ │ ├── notification.service.ts
│ │ │ ├── spinner.service.spec.ts
│ │ │ └── spinner.service.ts
│ │ ├── custom-material
│ │ │ ├── custom-material.module.ts
│ │ │ └── select-check-all
│ │ │ ├── select-check-all.component.css
│ │ │ ├── select-check-all.component.html
│ │ │ └── select-check-all.component.ts
│ │ ├── customers
│ │ │ ├── customer-list
│ │ │ │ ├── customer-list.component.css
│ │ │ │ ├── customer-list.component.html
│ │ │ │ └── customer-list.component.ts
│ │ │ ├── customers-routing.module.ts
│ │ │ └── customers.module.ts
│ │ ├── dashboard
│ │ │ ├── dashboard-home
│ │ │ │ ├── dashboard-home.component.css
│ │ │ │ ├── dashboard-home.component.html
│ │ │ │ └── dashboard-home.component.ts
│ │ │ ├── dashboard-routing.module.ts
│ │ │ └── dashboard.module.ts
│ │ ├── shared
│ │ │ ├── confirm-dialog
│ │ │ │ ├── confirm-dialog.component.css
│ │ │ │ ├── confirm-dialog.component.html
│ │ │ │ └── confirm-dialog.component.ts
│ │ │ ├── content-placeholder-animation
│ │ │ │ ├── content-placeholder-animation.component.css
│ │ │ │ ├── content-placeholder-animation.component.html
│ │ │ │ └── content-placeholder-animation.component.ts
│ │ │ ├── footer
│ │ │ ├── layout
│ │ │ │ ├── layout.component.css
│ │ │ │ ├── layout.component.html
│ │ │ │ └── layout.component.ts
│ │ │ ├── mocks
│ │ │ │ └── spinner-consumer.ts
│ │ │ ├── pipes
│ │ │ │ ├── limit-to.pipe.spec.ts
│ │ │ │ ├── limit-to.pipe.ts
│ │ │ │ ├── local-date.pipe.spec.ts
│ │ │ │ ├── local-date.pipe.ts
│ │ │ │ ├── yes-no.pipe.spec.ts
│ │ │ │ └── yes-no.pipe.ts
│ │ │ ├── shared.module.ts
│ │ │ └── validators
│ │ │ └── autocompleteSelectionValidator.ts
│ │ └── users
│ │ ├── user-list
│ │ │ ├── user-list.component.css
│ │ │ ├── user-list.component.html
│ │ │ └── user-list.component.ts
│ │ ├── users-routing.module.ts
│ │ └── users.module.ts
│ ├── assets
│ │ ├── favicon
│ │ └── user.png
│ ├── browserslist
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── index.html
│ ├── karma.conf.js
│ ├── main.ts
│ ├── polyfills.ts
│ ├── styles.css
│ ├── test.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── tslint.json
├── tsconfig.json
└── tslint.json