├── .gitattributes ├── .gitignore ├── MVCInBuiltFeatures.sln ├── MVCInBuiltFeatures ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── Startup.Auth.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ └── RolesController.cs ├── Global.asax ├── Global.asax.cs ├── MVCInBuiltFeatures.csproj ├── 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 ├── 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 │ ├── Roles │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── Index.cshtml │ │ └── ManageUserRoles.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 └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/.gitignore -------------------------------------------------------------------------------- /MVCInBuiltFeatures.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures.sln -------------------------------------------------------------------------------- /MVCInBuiltFeatures/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Content/Site.css -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Content/bootstrap.css -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Content/bootstrap.min.css -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Controllers/AccountController.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Controllers/HomeController.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Controllers/RolesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Controllers/RolesController.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Global.asax -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Global.asax.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/MVCInBuiltFeatures.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/MVCInBuiltFeatures.csproj -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Models/IdentityModels.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Project_Readme.html -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/_references.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/bootstrap.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/respond.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Scripts/respond.min.js -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Startup.cs -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/_ChangePasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/_ChangePasswordPartial.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/_RemoveAccountPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/_RemoveAccountPartial.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Home/About.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Roles/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Roles/Create.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Roles/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Roles/Edit.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Roles/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Roles/Index.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Roles/ManageUserRoles.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Roles/ManageUserRoles.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/Web.config -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Web.Debug.config -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Web.Release.config -------------------------------------------------------------------------------- /MVCInBuiltFeatures/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/Web.config -------------------------------------------------------------------------------- /MVCInBuiltFeatures/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/favicon.ico -------------------------------------------------------------------------------- /MVCInBuiltFeatures/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /MVCInBuiltFeatures/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /MVCInBuiltFeatures/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /MVCInBuiltFeatures/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MVCInBuiltFeatures/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/MVCInBuiltFeatures/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetfunda/AspMvcIdentity/HEAD/README.md --------------------------------------------------------------------------------