├── .gitignore └── src └── dotnetGigs ├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Auth ├── IJwtFactory.cs └── JwtFactory.cs ├── Controllers ├── AccountsController.cs ├── AuthController.cs └── DashboardController.cs ├── Data └── ApplicationDbContext.cs ├── Extensions └── ResponseExtensions.cs ├── Helpers ├── Constants.cs └── Errors.cs ├── Migrations ├── 20170420021732_inital.Designer.cs ├── 20170420021732_inital.cs └── ApplicationDbContextModelSnapshot.cs ├── Models ├── Entities │ ├── AppUser.cs │ └── JobSeeker.cs └── JwtIssuerOptions.cs ├── Program.cs ├── README.md ├── Startup.cs ├── ViewModels ├── CredentialsViewModel.cs ├── Mappings │ └── ViewModelToEntityMappingProfile.cs ├── RegistrationViewModel.cs └── Validations │ ├── CredentialsViewModelValidator.cs │ └── RegistrationViewModelValidator.cs ├── appsettings.json ├── dotnetGigs.csproj ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── account │ │ ├── account.module.ts │ │ ├── account.routing.ts │ │ ├── login-form │ │ │ ├── login-form.component.html │ │ │ ├── login-form.component.scss │ │ │ ├── login-form.component.spec.ts │ │ │ └── login-form.component.ts │ │ └── registration-form │ │ │ ├── registration-form.component.html │ │ │ ├── registration-form.component.scss │ │ │ ├── registration-form.component.spec.ts │ │ │ └── registration-form.component.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── auth.guard.ts │ ├── authenticate-xhr.backend.ts │ ├── dashboard │ │ ├── dashboard.module.ts │ │ ├── dashboard.routing.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── models │ │ │ └── home.details.interface.ts │ │ ├── root │ │ │ ├── root.component.html │ │ │ ├── root.component.scss │ │ │ ├── root.component.spec.ts │ │ │ └── root.component.ts │ │ └── services │ │ │ └── dashboard.service.ts │ ├── directives │ │ ├── email.validator.directive.ts │ │ └── focus.directive.ts │ ├── header │ │ ├── header.component.html │ │ ├── header.component.scss │ │ ├── header.component.spec.ts │ │ └── header.component.ts │ ├── home │ │ ├── home.component.html │ │ ├── home.component.scss │ │ ├── home.component.spec.ts │ │ └── home.component.ts │ ├── rxjs-operators.js │ ├── shared │ │ ├── models │ │ │ ├── credentials.interface.ts │ │ │ └── user.registration.interface.ts │ │ ├── modules │ │ │ └── shared.module.ts │ │ ├── services │ │ │ ├── base.service.ts │ │ │ └── user.service.ts │ │ └── utils │ │ │ └── config.service.ts │ └── spinner │ │ ├── spinner.component.html │ │ ├── spinner.component.scss │ │ ├── spinner.component.spec.ts │ │ └── spinner.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json └── wwwroot ├── favicon.ico ├── index.html ├── inline.bundle.js ├── inline.bundle.js.map ├── main.bundle.js ├── main.bundle.js.map ├── polyfills.bundle.js ├── polyfills.bundle.js.map ├── scripts.bundle.js ├── scripts.bundle.js.map ├── styles.bundle.js ├── styles.bundle.js.map ├── vendor.bundle.js └── vendor.bundle.js.map /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/.gitignore -------------------------------------------------------------------------------- /src/dotnetGigs/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/.angular-cli.json -------------------------------------------------------------------------------- /src/dotnetGigs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/.editorconfig -------------------------------------------------------------------------------- /src/dotnetGigs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/.gitignore -------------------------------------------------------------------------------- /src/dotnetGigs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/.vscode/launch.json -------------------------------------------------------------------------------- /src/dotnetGigs/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/.vscode/tasks.json -------------------------------------------------------------------------------- /src/dotnetGigs/Auth/IJwtFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Auth/IJwtFactory.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Auth/JwtFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Auth/JwtFactory.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Controllers/AccountsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Controllers/AccountsController.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Controllers/AuthController.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Controllers/DashboardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Controllers/DashboardController.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Extensions/ResponseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Extensions/ResponseExtensions.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Helpers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Helpers/Constants.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Helpers/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Helpers/Errors.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Migrations/20170420021732_inital.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Migrations/20170420021732_inital.Designer.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Migrations/20170420021732_inital.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Migrations/20170420021732_inital.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Models/Entities/AppUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Models/Entities/AppUser.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Models/Entities/JobSeeker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Models/Entities/JobSeeker.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Models/JwtIssuerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Models/JwtIssuerOptions.cs -------------------------------------------------------------------------------- /src/dotnetGigs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Program.cs -------------------------------------------------------------------------------- /src/dotnetGigs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/README.md -------------------------------------------------------------------------------- /src/dotnetGigs/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/Startup.cs -------------------------------------------------------------------------------- /src/dotnetGigs/ViewModels/CredentialsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/ViewModels/CredentialsViewModel.cs -------------------------------------------------------------------------------- /src/dotnetGigs/ViewModels/Mappings/ViewModelToEntityMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/ViewModels/Mappings/ViewModelToEntityMappingProfile.cs -------------------------------------------------------------------------------- /src/dotnetGigs/ViewModels/RegistrationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/ViewModels/RegistrationViewModel.cs -------------------------------------------------------------------------------- /src/dotnetGigs/ViewModels/Validations/CredentialsViewModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/ViewModels/Validations/CredentialsViewModelValidator.cs -------------------------------------------------------------------------------- /src/dotnetGigs/ViewModels/Validations/RegistrationViewModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/ViewModels/Validations/RegistrationViewModelValidator.cs -------------------------------------------------------------------------------- /src/dotnetGigs/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/appsettings.json -------------------------------------------------------------------------------- /src/dotnetGigs/dotnetGigs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/dotnetGigs.csproj -------------------------------------------------------------------------------- /src/dotnetGigs/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/e2e/app.po.ts -------------------------------------------------------------------------------- /src/dotnetGigs/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /src/dotnetGigs/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/karma.conf.js -------------------------------------------------------------------------------- /src/dotnetGigs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/package.json -------------------------------------------------------------------------------- /src/dotnetGigs/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/protractor.conf.js -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/account.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/account/account.module.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/account.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/account/account.routing.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/login-form/login-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/account/login-form/login-form.component.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/login-form/login-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/login-form/login-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/account/login-form/login-form.component.spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/login-form/login-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/account/login-form/login-form.component.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/registration-form/registration-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/account/registration-form/registration-form.component.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/registration-form/registration-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/registration-form/registration-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/account/registration-form/registration-form.component.spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/account/registration-form/registration-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/account/registration-form/registration-form.component.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/app.component.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/app.component.scss -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/app.component.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/app.module.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/app.routing.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/auth.guard.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/authenticate-xhr.backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/authenticate-xhr.backend.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/dashboard.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/dashboard.routing.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/home/home.component.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/home/home.component.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/models/home.details.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/models/home.details.interface.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/root/root.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/root/root.component.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/root/root.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/root/root.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/root/root.component.spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/root/root.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/root/root.component.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/dashboard/services/dashboard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/dashboard/services/dashboard.service.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/directives/email.validator.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/directives/email.validator.directive.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/directives/focus.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/directives/focus.directive.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/header/header.component.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/header/header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/header/header.component.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/rxjs-operators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/rxjs-operators.js -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/shared/models/credentials.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/shared/models/credentials.interface.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/shared/models/user.registration.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/shared/models/user.registration.interface.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/shared/modules/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/shared/modules/shared.module.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/shared/services/base.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/shared/services/base.service.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/shared/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/shared/services/user.service.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/shared/utils/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/shared/utils/config.service.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/spinner/spinner.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/spinner/spinner.component.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/spinner/spinner.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/spinner/spinner.component.scss -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/spinner/spinner.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/spinner/spinner.component.spec.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/app/spinner/spinner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/app/spinner/spinner.component.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dotnetGigs/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/dotnetGigs/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/environments/environment.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/favicon.ico -------------------------------------------------------------------------------- /src/dotnetGigs/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/index.html -------------------------------------------------------------------------------- /src/dotnetGigs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/main.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/polyfills.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/styles.scss -------------------------------------------------------------------------------- /src/dotnetGigs/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/test.ts -------------------------------------------------------------------------------- /src/dotnetGigs/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/dotnetGigs/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/dotnetGigs/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/src/typings.d.ts -------------------------------------------------------------------------------- /src/dotnetGigs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/tsconfig.json -------------------------------------------------------------------------------- /src/dotnetGigs/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/tslint.json -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/index.html -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/inline.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/inline.bundle.js -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/inline.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/inline.bundle.js.map -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/main.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/main.bundle.js -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/main.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/main.bundle.js.map -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/polyfills.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/polyfills.bundle.js -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/polyfills.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/polyfills.bundle.js.map -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/scripts.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/scripts.bundle.js -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/scripts.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/scripts.bundle.js.map -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/styles.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/styles.bundle.js -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/styles.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/styles.bundle.js.map -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/vendor.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/vendor.bundle.js -------------------------------------------------------------------------------- /src/dotnetGigs/wwwroot/vendor.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmacneil/AngularASPNETCoreAuthentication/HEAD/src/dotnetGigs/wwwroot/vendor.bundle.js.map --------------------------------------------------------------------------------