├── .cursor └── rules │ └── angular-20.mdc ├── .editorconfig ├── .env ├── .github └── copilot-instructions.md ├── .gitignore ├── .postcssrc.json ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── package.json ├── prisma ├── dev.db ├── migrations │ ├── 20250708120346_init │ │ └── migration.sql │ ├── 20250708153349_better_auth │ │ └── migration.sql │ ├── 20250708153839_better_auth_final │ │ └── migration.sql │ ├── 20250708185051_add_todo_model │ │ └── migration.sql │ ├── 20250708194836_todos │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public └── favicon.ico ├── social-preview.png ├── src ├── api │ ├── api.ts │ ├── features │ │ └── todos │ │ │ ├── todos.controller.ts │ │ │ └── todos.routes.ts │ └── lib │ │ ├── auth.ts │ │ └── prisma.ts ├── app │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.server.ts │ ├── app.config.ts │ ├── app.routes.server.ts │ ├── app.routes.ts │ ├── components │ │ ├── admin-header │ │ │ ├── admin-header.component.html │ │ │ ├── admin-header.component.spec.ts │ │ │ └── admin-header.component.ts │ │ ├── admin-sidebar │ │ │ ├── admin-sidebar.component.html │ │ │ ├── admin-sidebar.component.spec.ts │ │ │ └── admin-sidebar.component.ts │ │ ├── faq │ │ │ ├── faq.component.html │ │ │ ├── faq.component.spec.ts │ │ │ └── faq.component.ts │ │ ├── features │ │ │ ├── features.component.html │ │ │ ├── features.component.spec.ts │ │ │ └── features.component.ts │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── hero │ │ │ ├── hero.component.html │ │ │ ├── hero.component.spec.ts │ │ │ └── hero.component.ts │ │ ├── pricing │ │ │ ├── pricing.component.html │ │ │ ├── pricing.component.spec.ts │ │ │ └── pricing.component.ts │ │ └── testimonials │ │ │ ├── testimonials.component.html │ │ │ ├── testimonials.component.spec.ts │ │ │ └── testimonials.component.ts │ ├── core │ │ ├── guards │ │ │ ├── admin.guard.spec.ts │ │ │ ├── admin.guard.ts │ │ │ ├── guest.guard.spec.ts │ │ │ └── guest.guard.ts │ │ └── services │ │ │ ├── api.service.spec.ts │ │ │ ├── api.service.ts │ │ │ ├── auth.service.spec.ts │ │ │ └── auth.service.ts │ ├── layouts │ │ ├── admin-layout │ │ │ ├── admin-layout.component.html │ │ │ ├── admin-layout.component.spec.ts │ │ │ └── admin-layout.component.ts │ │ ├── auth-layout │ │ │ ├── auth-layout.component.html │ │ │ ├── auth-layout.component.spec.ts │ │ │ └── auth-layout.component.ts │ │ └── main-layout │ │ │ ├── main-layout.component.html │ │ │ ├── main-layout.component.spec.ts │ │ │ └── main-layout.component.ts │ ├── models │ │ └── auth.model.ts │ ├── pages │ │ ├── admin │ │ │ ├── admin.routes.ts │ │ │ ├── dashboard │ │ │ │ ├── dashboard.component.html │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ └── dashboard.component.ts │ │ │ ├── settings │ │ │ │ ├── settings.component.html │ │ │ │ ├── settings.component.spec.ts │ │ │ │ └── settings.component.ts │ │ │ └── todos │ │ │ │ ├── todos.component.html │ │ │ │ ├── todos.component.spec.ts │ │ │ │ └── todos.component.ts │ │ ├── auth │ │ │ ├── auth.routes.ts │ │ │ ├── forgot-password │ │ │ │ ├── forgot-password.component.html │ │ │ │ ├── forgot-password.component.spec.ts │ │ │ │ └── forgot-password.component.ts │ │ │ ├── reset-password │ │ │ │ ├── reset-password.component.html │ │ │ │ ├── reset-password.component.spec.ts │ │ │ │ └── reset-password.component.ts │ │ │ ├── signin │ │ │ │ ├── signin.component.html │ │ │ │ ├── signin.component.spec.ts │ │ │ │ └── signin.component.ts │ │ │ └── signup │ │ │ │ ├── signup.component.html │ │ │ │ ├── signup.component.spec.ts │ │ │ │ └── signup.component.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── not-found │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.spec.ts │ │ │ └── not-found.component.ts │ │ └── pages.routes.ts │ └── services │ │ ├── todos.service.spec.ts │ │ └── todos.service.ts ├── index.html ├── main.server.ts ├── main.ts ├── server.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.cursor/rules/angular-20.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.cursor/rules/angular-20.mdc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.env -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.postcssrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/package.json -------------------------------------------------------------------------------- /prisma/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/prisma/dev.db -------------------------------------------------------------------------------- /prisma/migrations/20250708120346_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/prisma/migrations/20250708120346_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250708153349_better_auth/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/prisma/migrations/20250708153349_better_auth/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250708153839_better_auth_final/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/prisma/migrations/20250708153839_better_auth_final/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250708185051_add_todo_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/prisma/migrations/20250708185051_add_todo_model/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250708194836_todos/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/prisma/migrations/20250708194836_todos/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/social-preview.png -------------------------------------------------------------------------------- /src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/api/api.ts -------------------------------------------------------------------------------- /src/api/features/todos/todos.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/api/features/todos/todos.controller.ts -------------------------------------------------------------------------------- /src/api/features/todos/todos.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/api/features/todos/todos.routes.ts -------------------------------------------------------------------------------- /src/api/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/api/lib/auth.ts -------------------------------------------------------------------------------- /src/api/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/api/lib/prisma.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/app.config.server.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.routes.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/app.routes.server.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/components/admin-header/admin-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/admin-header/admin-header.component.html -------------------------------------------------------------------------------- /src/app/components/admin-header/admin-header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/admin-header/admin-header.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/admin-header/admin-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/admin-header/admin-header.component.ts -------------------------------------------------------------------------------- /src/app/components/admin-sidebar/admin-sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/admin-sidebar/admin-sidebar.component.html -------------------------------------------------------------------------------- /src/app/components/admin-sidebar/admin-sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/admin-sidebar/admin-sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/admin-sidebar/admin-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/admin-sidebar/admin-sidebar.component.ts -------------------------------------------------------------------------------- /src/app/components/faq/faq.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/faq/faq.component.html -------------------------------------------------------------------------------- /src/app/components/faq/faq.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/faq/faq.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/faq/faq.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/faq/faq.component.ts -------------------------------------------------------------------------------- /src/app/components/features/features.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/features/features.component.html -------------------------------------------------------------------------------- /src/app/components/features/features.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/features/features.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/features/features.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/features/features.component.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/components/hero/hero.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/hero/hero.component.html -------------------------------------------------------------------------------- /src/app/components/hero/hero.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/hero/hero.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/hero/hero.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/hero/hero.component.ts -------------------------------------------------------------------------------- /src/app/components/pricing/pricing.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/pricing/pricing.component.html -------------------------------------------------------------------------------- /src/app/components/pricing/pricing.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/pricing/pricing.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/pricing/pricing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/pricing/pricing.component.ts -------------------------------------------------------------------------------- /src/app/components/testimonials/testimonials.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/testimonials/testimonials.component.html -------------------------------------------------------------------------------- /src/app/components/testimonials/testimonials.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/testimonials/testimonials.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/testimonials/testimonials.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/components/testimonials/testimonials.component.ts -------------------------------------------------------------------------------- /src/app/core/guards/admin.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/core/guards/admin.guard.spec.ts -------------------------------------------------------------------------------- /src/app/core/guards/admin.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/core/guards/admin.guard.ts -------------------------------------------------------------------------------- /src/app/core/guards/guest.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/core/guards/guest.guard.spec.ts -------------------------------------------------------------------------------- /src/app/core/guards/guest.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/core/guards/guest.guard.ts -------------------------------------------------------------------------------- /src/app/core/services/api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/core/services/api.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/core/services/api.service.ts -------------------------------------------------------------------------------- /src/app/core/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/core/services/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/core/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/layouts/admin-layout/admin-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/admin-layout/admin-layout.component.html -------------------------------------------------------------------------------- /src/app/layouts/admin-layout/admin-layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/admin-layout/admin-layout.component.spec.ts -------------------------------------------------------------------------------- /src/app/layouts/admin-layout/admin-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/admin-layout/admin-layout.component.ts -------------------------------------------------------------------------------- /src/app/layouts/auth-layout/auth-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/auth-layout/auth-layout.component.html -------------------------------------------------------------------------------- /src/app/layouts/auth-layout/auth-layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/auth-layout/auth-layout.component.spec.ts -------------------------------------------------------------------------------- /src/app/layouts/auth-layout/auth-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/auth-layout/auth-layout.component.ts -------------------------------------------------------------------------------- /src/app/layouts/main-layout/main-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/main-layout/main-layout.component.html -------------------------------------------------------------------------------- /src/app/layouts/main-layout/main-layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/main-layout/main-layout.component.spec.ts -------------------------------------------------------------------------------- /src/app/layouts/main-layout/main-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/layouts/main-layout/main-layout.component.ts -------------------------------------------------------------------------------- /src/app/models/auth.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/models/auth.model.ts -------------------------------------------------------------------------------- /src/app/pages/admin/admin.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/admin.routes.ts -------------------------------------------------------------------------------- /src/app/pages/admin/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/pages/admin/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/admin/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/settings/settings.component.html -------------------------------------------------------------------------------- /src/app/pages/admin/settings/settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/settings/settings.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/admin/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/settings/settings.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/todos/todos.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/todos/todos.component.html -------------------------------------------------------------------------------- /src/app/pages/admin/todos/todos.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/todos/todos.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/admin/todos/todos.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/admin/todos/todos.component.ts -------------------------------------------------------------------------------- /src/app/pages/auth/auth.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/auth.routes.ts -------------------------------------------------------------------------------- /src/app/pages/auth/forgot-password/forgot-password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/forgot-password/forgot-password.component.html -------------------------------------------------------------------------------- /src/app/pages/auth/forgot-password/forgot-password.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/forgot-password/forgot-password.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/auth/forgot-password/forgot-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/forgot-password/forgot-password.component.ts -------------------------------------------------------------------------------- /src/app/pages/auth/reset-password/reset-password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/reset-password/reset-password.component.html -------------------------------------------------------------------------------- /src/app/pages/auth/reset-password/reset-password.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/reset-password/reset-password.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/auth/reset-password/reset-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/reset-password/reset-password.component.ts -------------------------------------------------------------------------------- /src/app/pages/auth/signin/signin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/signin/signin.component.html -------------------------------------------------------------------------------- /src/app/pages/auth/signin/signin.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/signin/signin.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/auth/signin/signin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/signin/signin.component.ts -------------------------------------------------------------------------------- /src/app/pages/auth/signup/signup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/signup/signup.component.html -------------------------------------------------------------------------------- /src/app/pages/auth/signup/signup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/signup/signup.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/auth/signup/signup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/auth/signup/signup.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/pages/not-found/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/not-found/not-found.component.html -------------------------------------------------------------------------------- /src/app/pages/not-found/not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/not-found/not-found.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/not-found/not-found.component.ts -------------------------------------------------------------------------------- /src/app/pages/pages.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/pages/pages.routes.ts -------------------------------------------------------------------------------- /src/app/services/todos.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/services/todos.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/todos.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/app/services/todos.service.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/main.server.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/src/styles.css -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angularcafe/ngXpress/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------