├── .gitignore ├── AspNetCoreMvcAngular.sln ├── AspNetCoreMvcAngular ├── .eslintignore ├── .eslintrc.js ├── AspNetCoreMvcAngular.csproj ├── Controllers │ ├── HomeController.cs │ ├── LogoutController.cs │ └── ThingsController.cs ├── Models │ └── Thing.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Repositories │ └── Things │ │ ├── IThingsRepository.cs │ │ └── ThingsRepository.cs ├── Startup.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── angularApp │ ├── _Layout.cshtml │ ├── app │ │ ├── about │ │ │ ├── about.module.ts │ │ │ ├── about.routes.ts │ │ │ └── components │ │ │ │ ├── about.component.html │ │ │ │ └── about.component.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.constants.ts │ │ ├── app.module.ts │ │ ├── app.routes.ts │ │ ├── core │ │ │ ├── core.module.ts │ │ │ └── services │ │ │ │ └── thing-data.service.ts │ │ ├── default │ │ │ ├── components │ │ │ │ ├── default.component.html │ │ │ │ └── default.component.ts │ │ │ ├── default.module.ts │ │ │ └── default.routes.ts │ │ ├── models │ │ │ └── thing.ts │ │ └── shared │ │ │ ├── components │ │ │ ├── customfooter │ │ │ │ ├── customfooter.component.html │ │ │ │ └── customfooter.component.ts │ │ │ └── navigation │ │ │ │ ├── navigation.component.html │ │ │ │ └── navigation.component.ts │ │ │ └── shared.module.ts │ ├── images │ │ └── damienbod.jpg │ ├── main-aot.ts │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── styles │ │ └── app.scss │ └── vendor.ts ├── appsettings.json ├── bundleconfig.json ├── config │ ├── spec.bundle.js │ ├── webpack.dev.js │ ├── webpack.helpers.js │ ├── webpack.prod.js │ └── webpack.test.js ├── favicon.ico ├── karma.conf.js ├── package-lock.json ├── package.json ├── tsconfig-aot.json ├── tsconfig.json └── webpack.config.js ├── LICENSE ├── README.md ├── StsServerIdentity ├── Config.cs ├── Controllers │ ├── AccountController.cs │ ├── ConsentController.cs │ ├── DeviceController.cs │ ├── GrantsController.cs │ ├── HomeController.cs │ ├── ManageController.cs │ └── SetLanguageController.cs ├── Data │ └── ApplicationDbContext.cs ├── Extensions.cs ├── Fido2 │ ├── Fido2MdsConfiguration.cs │ ├── Fido2Storage.cs │ ├── FidoStoredCredential.cs │ ├── Fifo2UserTwoFactorTokenProvider.cs │ ├── MfaFido2RegisterController.cs │ └── MfaFido2SignInFidoController.cs ├── Filters │ └── SecurityHeadersAttribute.cs ├── IdentityWithAdditionalClaimsProfileService.cs ├── LocalizationQueryProvider.cs ├── Models │ ├── AccountViewModels │ │ ├── AccountOptions.cs │ │ ├── ExternalLoginConfirmationViewModel.cs │ │ ├── ExternalProvider.cs │ │ ├── ForgotPasswordViewModel.cs │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LoginWith2faViewModel.cs │ │ ├── LoginWithRecoveryCodeViewModel.cs │ │ ├── LogoutInputModel.cs │ │ ├── LogoutViewModel.cs │ │ ├── MfaModel.cs │ │ ├── RedirectViewModel.cs │ │ ├── RegisterViewModel.cs │ │ ├── ResetPasswordViewModel.cs │ │ ├── SendCodeViewModel.cs │ │ └── VerifyCodeViewModel.cs │ ├── ApplicationUser.cs │ ├── AuthConfigurations.cs │ ├── ConsentViewModels │ │ ├── ConsentInputModel.cs │ │ ├── ConsentOptions.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── DeviceViewModels │ │ ├── DeviceAuthorizationInputModel.cs │ │ └── DeviceAuthorizationViewModel.cs │ ├── EmailSettings.cs │ ├── ErrorViewModel.cs │ ├── GrantsViewModel.cs │ └── ManageViewModels │ │ ├── ChangePasswordViewModel.cs │ │ ├── DeletePersonalDataViewModel.cs │ │ ├── EnableAuthenticatorViewModel.cs │ │ ├── ExternalLoginsViewModel.cs │ │ ├── IndexViewModel.cs │ │ ├── RemoveLoginViewModel.cs │ │ ├── SetPasswordViewModel.cs │ │ ├── ShowRecoveryCodesViewModel.cs │ │ └── TwoFactorAuthenticationViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Resources │ ├── LocService.cs │ ├── SharedResource.cs │ ├── SharedResource.de-CH.resx │ ├── SharedResource.de-DE.resx │ ├── SharedResource.en-US.resx │ ├── SharedResource.es-MX.resx │ ├── SharedResource.fr-FR.resx │ ├── SharedResource.ga-IE.resx │ ├── SharedResource.gsw-CH.resx │ ├── SharedResource.gsw-CH_ZH.resx │ ├── SharedResource.it-IT.resx │ └── SharedResource.zh-Hans.resx ├── Services │ ├── Certificate │ │ ├── CertificateConfiguration.cs │ │ ├── CertificateService.cs │ │ ├── ICertificateService.cs │ │ └── KeyVaultCertificateService.cs │ ├── EmailSender.cs │ └── IEmailSender.cs ├── Startup.cs ├── StsIdentityErrorDescriber.cs ├── StsServerIdentity.csproj ├── Views │ ├── Account │ │ ├── ConfirmEmail.cshtml │ │ ├── ErrorEnable2FA.cshtml │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── Lockout.cshtml │ │ ├── LoggedOut.cshtml │ │ ├── Login.cshtml │ │ ├── LoginFido2Mfa.cshtml │ │ ├── LoginWith2fa.cshtml │ │ ├── LoginWithRecoveryCode.cshtml │ │ ├── Logout.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── SendCode.cshtml │ │ └── VerifyCode.cshtml │ ├── Consent │ │ └── Index.cshtml │ ├── Device │ │ ├── Success.cshtml │ │ ├── UserCodeCapture.cshtml │ │ └── UserCodeConfirmation.cshtml │ ├── Grants │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Manage │ │ ├── ChangePassword.cshtml │ │ ├── DeletePersonalData.cshtml │ │ ├── Disable2fa.cshtml │ │ ├── DownloadPersonalData.cshtml │ │ ├── EnableAuthenticator.cshtml │ │ ├── ExternalLogins.cshtml │ │ ├── Fido2Mfa.cshtml │ │ ├── GenerateRecoveryCodes.cshtml │ │ ├── Index.cshtml │ │ ├── ManageNavPages.cs │ │ ├── PersonalData.cshtml │ │ ├── ResetAuthenticator.cshtml │ │ ├── SetPassword.cshtml │ │ ├── ShowRecoveryCodes.cshtml │ │ ├── TwoFactorAuthentication.cshtml │ │ ├── _Layout.cshtml │ │ ├── _ManageNav.cshtml │ │ ├── _StatusMessage.cshtml │ │ └── _ViewImports.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Redirect.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ ├── _ScopeListItem.cshtml │ │ ├── _SelectLanguagePartial.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ └── _ValidationSummary.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json ├── bundleconfig.json ├── package-lock.json ├── package.json ├── sts_dev_cert.pfx ├── usersdatabase.sqlite ├── usersdatabase.sqlite-shm ├── usersdatabase.sqlite-wal └── web.config └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/.gitignore -------------------------------------------------------------------------------- /AspNetCoreMvcAngular.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular.sln -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/.eslintignore -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/.eslintrc.js -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/AspNetCoreMvcAngular.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/AspNetCoreMvcAngular.csproj -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Controllers/HomeController.cs -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Controllers/LogoutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Controllers/LogoutController.cs -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Controllers/ThingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Controllers/ThingsController.cs -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Models/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Models/Thing.cs -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Program.cs -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Repositories/Things/IThingsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Repositories/Things/IThingsRepository.cs -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Repositories/Things/ThingsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Repositories/Things/ThingsRepository.cs -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Startup.cs -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/_Layout.cshtml -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/about/about.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/about/about.module.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/about/about.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/about/about.routes.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/about/components/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/about/components/about.component.html -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/about/components/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/about/components/about.component.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/app.component.html -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/app.component.scss -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/app.component.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/app.constants.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/app.module.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/app.routes.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/core/core.module.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/core/services/thing-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/core/services/thing-data.service.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/default/components/default.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/default/components/default.component.html -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/default/components/default.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/default/components/default.component.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/default/default.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/default/default.module.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/default/default.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/default/default.routes.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/models/thing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/models/thing.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/shared/components/customfooter/customfooter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/shared/components/customfooter/customfooter.component.html -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/shared/components/customfooter/customfooter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/shared/components/customfooter/customfooter.component.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/shared/components/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/shared/components/navigation/navigation.component.html -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/shared/components/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/shared/components/navigation/navigation.component.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/app/shared/shared.module.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/images/damienbod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/images/damienbod.jpg -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/main-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/main-aot.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/main.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/polyfills.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/styles.scss: -------------------------------------------------------------------------------- 1 | @import './styles/app.scss'; 2 | -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/styles/app.scss: -------------------------------------------------------------------------------- 1 | a { 2 | color: #03A9F4; 3 | } -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/angularApp/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/angularApp/vendor.ts -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/appsettings.json -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/bundleconfig.json -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/config/spec.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/config/spec.bundle.js -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/config/webpack.dev.js -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/config/webpack.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/config/webpack.helpers.js -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/config/webpack.prod.js -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/config/webpack.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/config/webpack.test.js -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/favicon.ico -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/karma.conf.js -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/package-lock.json -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/package.json -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/tsconfig-aot.json -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/tsconfig.json -------------------------------------------------------------------------------- /AspNetCoreMvcAngular/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/AspNetCoreMvcAngular/webpack.config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/README.md -------------------------------------------------------------------------------- /StsServerIdentity/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Config.cs -------------------------------------------------------------------------------- /StsServerIdentity/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Controllers/AccountController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Controllers/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Controllers/ConsentController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Controllers/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Controllers/DeviceController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Controllers/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Controllers/GrantsController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Controllers/HomeController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Controllers/ManageController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Controllers/SetLanguageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Controllers/SetLanguageController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /StsServerIdentity/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Extensions.cs -------------------------------------------------------------------------------- /StsServerIdentity/Fido2/Fido2MdsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Fido2/Fido2MdsConfiguration.cs -------------------------------------------------------------------------------- /StsServerIdentity/Fido2/Fido2Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Fido2/Fido2Storage.cs -------------------------------------------------------------------------------- /StsServerIdentity/Fido2/FidoStoredCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Fido2/FidoStoredCredential.cs -------------------------------------------------------------------------------- /StsServerIdentity/Fido2/Fifo2UserTwoFactorTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Fido2/Fifo2UserTwoFactorTokenProvider.cs -------------------------------------------------------------------------------- /StsServerIdentity/Fido2/MfaFido2RegisterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Fido2/MfaFido2RegisterController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Fido2/MfaFido2SignInFidoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Fido2/MfaFido2SignInFidoController.cs -------------------------------------------------------------------------------- /StsServerIdentity/Filters/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Filters/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /StsServerIdentity/IdentityWithAdditionalClaimsProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/IdentityWithAdditionalClaimsProfileService.cs -------------------------------------------------------------------------------- /StsServerIdentity/LocalizationQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/LocalizationQueryProvider.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/AccountOptions.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/ExternalProvider.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/LoginInputModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/LoginWith2faViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/LoginWith2faViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/LogoutInputModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/LogoutViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/MfaModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/MfaModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/RedirectViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/SendCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/SendCodeViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AccountViewModels/VerifyCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AccountViewModels/VerifyCodeViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/AuthConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/AuthConfigurations.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ConsentViewModels/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ConsentViewModels/ConsentInputModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ConsentViewModels/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ConsentViewModels/ConsentOptions.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ConsentViewModels/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ConsentViewModels/ConsentViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ConsentViewModels/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ConsentViewModels/ProcessConsentResult.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ConsentViewModels/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ConsentViewModels/ScopeViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/DeviceViewModels/DeviceAuthorizationInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/DeviceViewModels/DeviceAuthorizationInputModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/DeviceViewModels/DeviceAuthorizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/DeviceViewModels/DeviceAuthorizationViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/EmailSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/EmailSettings.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/GrantsViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/DeletePersonalDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/DeletePersonalDataViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/EnableAuthenticatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/EnableAuthenticatorViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/ExternalLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/ExternalLoginsViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/ShowRecoveryCodesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/ShowRecoveryCodesViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs -------------------------------------------------------------------------------- /StsServerIdentity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Program.cs -------------------------------------------------------------------------------- /StsServerIdentity/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Properties/launchSettings.json -------------------------------------------------------------------------------- /StsServerIdentity/Resources/LocService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/LocService.cs -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.cs -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.de-CH.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.de-CH.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.de-DE.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.en-US.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.es-MX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.es-MX.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.fr-FR.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.ga-IE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.ga-IE.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.gsw-CH.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.gsw-CH.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.gsw-CH_ZH.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.gsw-CH_ZH.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.it-IT.resx -------------------------------------------------------------------------------- /StsServerIdentity/Resources/SharedResource.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Resources/SharedResource.zh-Hans.resx -------------------------------------------------------------------------------- /StsServerIdentity/Services/Certificate/CertificateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Services/Certificate/CertificateConfiguration.cs -------------------------------------------------------------------------------- /StsServerIdentity/Services/Certificate/CertificateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Services/Certificate/CertificateService.cs -------------------------------------------------------------------------------- /StsServerIdentity/Services/Certificate/ICertificateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Services/Certificate/ICertificateService.cs -------------------------------------------------------------------------------- /StsServerIdentity/Services/Certificate/KeyVaultCertificateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Services/Certificate/KeyVaultCertificateService.cs -------------------------------------------------------------------------------- /StsServerIdentity/Services/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Services/EmailSender.cs -------------------------------------------------------------------------------- /StsServerIdentity/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Services/IEmailSender.cs -------------------------------------------------------------------------------- /StsServerIdentity/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Startup.cs -------------------------------------------------------------------------------- /StsServerIdentity/StsIdentityErrorDescriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/StsIdentityErrorDescriber.cs -------------------------------------------------------------------------------- /StsServerIdentity/StsServerIdentity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/StsServerIdentity.csproj -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/ErrorEnable2FA.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/ErrorEnable2FA.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/LoginFido2Mfa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/LoginFido2Mfa.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Device/Success.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Device/UserCodeCapture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Device/UserCodeCapture.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Device/UserCodeConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Device/UserCodeConfirmation.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/DeletePersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/DeletePersonalData.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/DownloadPersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/DownloadPersonalData.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/Fido2Mfa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/Fido2Mfa.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/PersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/PersonalData.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/ShowRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/ShowRecoveryCodes.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Manage/_ViewImports.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Shared/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Shared/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Shared/_SelectLanguagePartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Shared/_SelectLanguagePartial.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /StsServerIdentity/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/appsettings.json -------------------------------------------------------------------------------- /StsServerIdentity/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/bundleconfig.json -------------------------------------------------------------------------------- /StsServerIdentity/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/package-lock.json -------------------------------------------------------------------------------- /StsServerIdentity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/package.json -------------------------------------------------------------------------------- /StsServerIdentity/sts_dev_cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/sts_dev_cert.pfx -------------------------------------------------------------------------------- /StsServerIdentity/usersdatabase.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/usersdatabase.sqlite -------------------------------------------------------------------------------- /StsServerIdentity/usersdatabase.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/usersdatabase.sqlite-shm -------------------------------------------------------------------------------- /StsServerIdentity/usersdatabase.sqlite-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StsServerIdentity/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/StsServerIdentity/web.config -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/AspNetCoreMvcAngular/HEAD/appveyor.yml --------------------------------------------------------------------------------