├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── db.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ └── register │ │ │ ├── register.component.css │ │ │ ├── register.component.html │ │ │ ├── register.component.spec.ts │ │ │ └── register.component.ts │ ├── guards │ │ ├── auth.guard.spec.ts │ │ └── auth.guard.ts │ ├── interfaces │ │ └── auth.ts │ ├── services │ │ ├── auth.service.spec.ts │ │ └── auth.service.ts │ └── shared │ │ └── password-match.directive.ts ├── assets │ └── .gitkeep ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/angular.json -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/db.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/register/register.component.html -------------------------------------------------------------------------------- /src/app/components/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/register/register.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/components/register/register.component.ts -------------------------------------------------------------------------------- /src/app/guards/auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/guards/auth.guard.spec.ts -------------------------------------------------------------------------------- /src/app/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/guards/auth.guard.ts -------------------------------------------------------------------------------- /src/app/interfaces/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/interfaces/auth.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/services/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/shared/password-match.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/app/shared/password-match.directive.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/src/styles.css -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haseena-pa/angular-primeng-app-with-auth/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------