├── .gitattributes ├── .gitignore ├── README.md ├── license.txt ├── nuget ├── BrockAllen.IdentityReboot.Ef.cmd ├── BrockAllen.IdentityReboot.Ef │ └── BrockAllen.IdentityReboot.Ef.nuspec ├── BrockAllen.IdentityReboot.cmd ├── BrockAllen.IdentityReboot │ └── BrockAllen.IdentityReboot.nuspec └── all.cmd ├── samples ├── Attack2FACode │ ├── GenCode │ │ ├── GenCode.sln │ │ └── GenCode │ │ │ ├── App.config │ │ │ ├── GenCode.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── WebSample │ │ ├── IdSample │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── IdentityConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── Startup.Auth.cs │ │ ├── Content │ │ │ ├── Site.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ ├── AdminController.cs │ │ │ ├── HomeController.cs │ │ │ ├── ManageController.cs │ │ │ ├── RolesAdminController.cs │ │ │ └── UserAdminController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── IdSample.csproj │ │ ├── Models │ │ │ ├── AccountViewModels.cs │ │ │ ├── AdminViewModel.cs │ │ │ ├── IdentityModels.cs │ │ │ └── ManageViewModels.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.6.2.js │ │ │ ├── respond.js │ │ │ └── respond.min.js │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── ConfirmEmail.cshtml │ │ │ │ ├── DisplayEmail.cshtml │ │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ │ ├── ForgotPassword.cshtml │ │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ ├── Register.cshtml │ │ │ │ ├── ResetPassword.cshtml │ │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ │ ├── SendCode.cshtml │ │ │ │ ├── VerifyCode.cshtml │ │ │ │ └── _ExternalLoginsListPartial.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Manage │ │ │ │ ├── AddPhoneNumber.cshtml │ │ │ │ ├── ChangePassword.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── ManageLogins.cshtml │ │ │ │ ├── SetPassword.cshtml │ │ │ │ └── VerifyPhoneNumber.cshtml │ │ │ ├── RolesAdmin │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── UsersAdmin │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── packages.config │ │ └── WebSample.sln ├── VS2013.Update1 │ ├── VS2013.Update1.sln │ └── VS2013.Update1 │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── IdentityConfig.cs │ │ ├── RouteConfig.cs │ │ └── Startup.Auth.cs │ │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── HomeController.cs │ │ ├── ManageController.cs │ │ ├── RolesAdminController.cs │ │ └── UserAdminController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Models │ │ ├── AccountViewModels.cs │ │ ├── AdminViewModel.cs │ │ ├── IdentityModels.cs │ │ └── ManageViewModels.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ │ ├── Startup.cs │ │ ├── VS2013.Update1.csproj │ │ ├── Views │ │ ├── Account │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── DisplayEmail.cshtml │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ ├── SendCode.cshtml │ │ │ ├── VerifyCode.cshtml │ │ │ └── _ExternalLoginsListPartial.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Manage │ │ │ ├── AddPhoneNumber.cshtml │ │ │ ├── ChangePassword.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ManageLogins.cshtml │ │ │ ├── SetPassword.cshtml │ │ │ └── VerifyPhoneNumber.cshtml │ │ ├── RolesAdmin │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── Lockout.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _LoginPartial.cshtml │ │ ├── UsersAdmin │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ └── packages.config ├── VS2013.Update3 │ ├── VS2013.Update3.sln │ └── VS2013.Update3 │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── IdentityConfig.cs │ │ ├── RouteConfig.cs │ │ └── Startup.Auth.cs │ │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── HomeController.cs │ │ └── ManageController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Models │ │ ├── AccountViewModels.cs │ │ ├── IdentityModels.cs │ │ └── ManageViewModels.cs │ │ ├── Project_Readme.html │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── _references.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ │ ├── Startup.cs │ │ ├── VS2013.Update3.csproj │ │ ├── Views │ │ ├── Account │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ ├── SendCode.cshtml │ │ │ ├── VerifyCode.cshtml │ │ │ ├── _ChangePasswordPartial.cshtml │ │ │ ├── _ExternalLoginsListPartial.cshtml │ │ │ ├── _RemoveAccountPartial.cshtml │ │ │ └── _SetPasswordPartial.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Manage │ │ │ ├── AddPhoneNumber.cshtml │ │ │ ├── ChangePassword.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ManageLogins.cshtml │ │ │ ├── SetPassword.cshtml │ │ │ └── VerifyPhoneNumber.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── Lockout.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _LoginPartial.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ └── packages.config └── VS2013 │ ├── VS2013.sln │ └── VS2013 │ ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── Startup.Auth.cs │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ ├── AccountController.cs │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ ├── AccountViewModels.cs │ └── IdentityModels.cs │ ├── Project_Readme.html │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js │ ├── Startup.cs │ ├── VS2013.csproj │ ├── Views │ ├── Account │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── Login.cshtml │ │ ├── Manage.cshtml │ │ ├── Register.cshtml │ │ ├── _ChangePasswordPartial.cshtml │ │ ├── _ExternalLoginsListPartial.cshtml │ │ ├── _RemoveAccountPartial.cshtml │ │ └── _SetPasswordPartial.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ └── packages.config └── source ├── BrockAllen.IdentityReboot.Ef ├── App.config ├── BrockAllen.IdentityReboot.Ef.csproj ├── ITwoFactorCode.cs ├── IdentityRebootUser.cs ├── IdentityRebootUserStore.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── BrockAllen.IdentityReboot.Tests ├── AdaptivePasswordHasherTests.cs ├── BrockAllen.IdentityReboot.Tests.csproj ├── IdentityRebootTestBase.cs ├── Properties │ └── AssemblyInfo.cs ├── TestUser.cs └── packages.config ├── BrockAllen.IdentityReboot.sln └── BrockAllen.IdentityReboot ├── BrockAllen.IdentityReboot.csproj ├── IdentityRebootUserManager.cs ├── Messages.Designer.cs ├── Messages.resx ├── PasswordHasher └── AdaptivePasswordHasher.cs ├── Properties └── AssemblyInfo.cs ├── System.Web.Helpers.Crypto.cs ├── TwoFactorAuth ├── ITwoFactorCodeStore.cs ├── IUserManagerSupportsTwoFactorAuthStore.cs ├── MobileStoredTwoFactorCodeProvider.cs ├── StoredTwoFactorCodeProvider.cs └── TwoFactorAuthData.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/license.txt -------------------------------------------------------------------------------- /nuget/BrockAllen.IdentityReboot.Ef.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/nuget/BrockAllen.IdentityReboot.Ef.cmd -------------------------------------------------------------------------------- /nuget/BrockAllen.IdentityReboot.Ef/BrockAllen.IdentityReboot.Ef.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/nuget/BrockAllen.IdentityReboot.Ef/BrockAllen.IdentityReboot.Ef.nuspec -------------------------------------------------------------------------------- /nuget/BrockAllen.IdentityReboot.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/nuget/BrockAllen.IdentityReboot.cmd -------------------------------------------------------------------------------- /nuget/BrockAllen.IdentityReboot/BrockAllen.IdentityReboot.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/nuget/BrockAllen.IdentityReboot/BrockAllen.IdentityReboot.nuspec -------------------------------------------------------------------------------- /nuget/all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/nuget/all.cmd -------------------------------------------------------------------------------- /samples/Attack2FACode/GenCode/GenCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/GenCode/GenCode.sln -------------------------------------------------------------------------------- /samples/Attack2FACode/GenCode/GenCode/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/GenCode/GenCode/App.config -------------------------------------------------------------------------------- /samples/Attack2FACode/GenCode/GenCode/GenCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/GenCode/GenCode/GenCode.csproj -------------------------------------------------------------------------------- /samples/Attack2FACode/GenCode/GenCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/GenCode/GenCode/Program.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/GenCode/GenCode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/GenCode/GenCode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Content/Site.css -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Content/bootstrap.css -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Content/bootstrap.min.css -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Controllers/AccountController.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Controllers/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Controllers/AdminController.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Controllers/ManageController.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Controllers/RolesAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Controllers/RolesAdminController.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Controllers/UserAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Controllers/UserAdminController.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Global.asax -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Global.asax.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/IdSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/IdSample.csproj -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Models/AdminViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Models/AdminViewModel.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Models/IdentityModels.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/bootstrap.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/respond.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Scripts/respond.min.js -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Startup.cs -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/DisplayEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/DisplayEmail.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Home/About.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Create.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Delete.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Details.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Edit.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/RolesAdmin/Index.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Create.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Delete.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Details.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Edit.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/UsersAdmin/Index.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/Web.config -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Web.Debug.config -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Web.Release.config -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/Web.config -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/IdSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/IdSample/packages.config -------------------------------------------------------------------------------- /samples/Attack2FACode/WebSample/WebSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/Attack2FACode/WebSample/WebSample.sln -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1.sln -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Content/Site.css -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Content/bootstrap.css -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Content/bootstrap.min.css -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Controllers/AccountController.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Controllers/ManageController.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Controllers/RolesAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Controllers/RolesAdminController.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Controllers/UserAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Controllers/UserAdminController.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Global.asax -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Global.asax.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Models/AdminViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Models/AdminViewModel.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Models/IdentityModels.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/bootstrap.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/respond.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Scripts/respond.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Startup.cs -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/VS2013.Update1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/VS2013.Update1.csproj -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/DisplayEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/DisplayEmail.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Home/About.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Create.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Delete.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Details.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Edit.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/RolesAdmin/Index.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Create.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Delete.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Details.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Edit.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/UsersAdmin/Index.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/Web.config -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Web.Debug.config -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Web.Release.config -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/Web.config -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /samples/VS2013.Update1/VS2013.Update1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update1/VS2013.Update1/packages.config -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3.sln -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Content/Site.css -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Content/bootstrap.css -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Content/bootstrap.min.css -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Controllers/AccountController.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Controllers/ManageController.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Global.asax -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Global.asax.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Models/IdentityModels.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Project_Readme.html -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/_references.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/bootstrap.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/respond.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Scripts/respond.min.js -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Startup.cs -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/VS2013.Update3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/VS2013.Update3.csproj -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/_ChangePasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/_ChangePasswordPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/_RemoveAccountPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/_RemoveAccountPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Home/About.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/Web.config -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Web.Debug.config -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Web.Release.config -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/Web.config -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/favicon.ico -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /samples/VS2013.Update3/VS2013.Update3/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013.Update3/VS2013.Update3/packages.config -------------------------------------------------------------------------------- /samples/VS2013/VS2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013.sln -------------------------------------------------------------------------------- /samples/VS2013/VS2013/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Content/Site.css -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Content/bootstrap.css -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Content/bootstrap.min.css -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Controllers/AccountController.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Global.asax -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Global.asax.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Models/IdentityModels.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Project_Readme.html -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/_references.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/bootstrap.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/respond.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Scripts/respond.min.js -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Startup.cs -------------------------------------------------------------------------------- /samples/VS2013/VS2013/VS2013.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/VS2013.csproj -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/_ChangePasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/_ChangePasswordPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/_RemoveAccountPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/_RemoveAccountPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Home/About.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/Web.config -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Web.Debug.config -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Web.Release.config -------------------------------------------------------------------------------- /samples/VS2013/VS2013/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/Web.config -------------------------------------------------------------------------------- /samples/VS2013/VS2013/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/favicon.ico -------------------------------------------------------------------------------- /samples/VS2013/VS2013/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /samples/VS2013/VS2013/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /samples/VS2013/VS2013/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /samples/VS2013/VS2013/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /samples/VS2013/VS2013/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/samples/VS2013/VS2013/packages.config -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Ef/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Ef/App.config -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Ef/BrockAllen.IdentityReboot.Ef.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Ef/BrockAllen.IdentityReboot.Ef.csproj -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Ef/ITwoFactorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Ef/ITwoFactorCode.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Ef/IdentityRebootUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Ef/IdentityRebootUser.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Ef/IdentityRebootUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Ef/IdentityRebootUserStore.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Ef/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Ef/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Ef/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Ef/packages.config -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Tests/AdaptivePasswordHasherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Tests/AdaptivePasswordHasherTests.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Tests/BrockAllen.IdentityReboot.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Tests/BrockAllen.IdentityReboot.Tests.csproj -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Tests/IdentityRebootTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Tests/IdentityRebootTestBase.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Tests/TestUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Tests/TestUser.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.Tests/packages.config -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot.sln -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/BrockAllen.IdentityReboot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/BrockAllen.IdentityReboot.csproj -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/IdentityRebootUserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/IdentityRebootUserManager.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/Messages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/Messages.Designer.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/Messages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/Messages.resx -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/PasswordHasher/AdaptivePasswordHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/PasswordHasher/AdaptivePasswordHasher.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/System.Web.Helpers.Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/System.Web.Helpers.Crypto.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/TwoFactorAuth/ITwoFactorCodeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/TwoFactorAuth/ITwoFactorCodeStore.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/TwoFactorAuth/IUserManagerSupportsTwoFactorAuthStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/TwoFactorAuth/IUserManagerSupportsTwoFactorAuthStore.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/TwoFactorAuth/MobileStoredTwoFactorCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/TwoFactorAuth/MobileStoredTwoFactorCodeProvider.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/TwoFactorAuth/StoredTwoFactorCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/TwoFactorAuth/StoredTwoFactorCodeProvider.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/TwoFactorAuth/TwoFactorAuthData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/TwoFactorAuth/TwoFactorAuthData.cs -------------------------------------------------------------------------------- /source/BrockAllen.IdentityReboot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockallen/BrockAllen.IdentityReboot/HEAD/source/BrockAllen.IdentityReboot/packages.config --------------------------------------------------------------------------------