gitextract_2k0n1zd6/ ├── .gitignore ├── AdminLTE.sln.DotSettings ├── AdminLTE.slnx ├── LICENSE ├── README.md └── src/ └── AdminLTE/ ├── AdminLTE.csproj ├── Common/ │ ├── Attributes/ │ │ └── HelpDefinitionAttribute.cs │ ├── CustomClaimTypes.cs │ ├── Extensions/ │ │ └── IdentityExtension.cs │ ├── GlobalHelper.cs │ └── ModuleHelper.cs ├── Controllers/ │ ├── AccountController.cs │ ├── BaseController.cs │ ├── HomeController.cs │ ├── ManageController.cs │ ├── RoleController.cs │ ├── SuperAdminController.cs │ └── UserLogsController.cs ├── Data/ │ ├── AppClaimsPrincipalFactory.cs │ ├── ApplicationDbContext.cs │ ├── AuditableSignInManager.cs │ ├── DataSeed.cs │ └── Migrations/ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ ├── 00000000000000_CreateIdentitySchema.cs │ ├── 20160801092435_ExtendASPNetUser.Designer.cs │ ├── 20160801092435_ExtendASPNetUser.cs │ ├── 20160802025049_UserAuditTable.Designer.cs │ ├── 20160802025049_UserAuditTable.cs │ ├── 20160802083550_AddedAdditionalUserFields.Designer.cs │ ├── 20160802083550_AddedAdditionalUserFields.cs │ ├── 20251217031644_UpdateEF10.Designer.cs │ ├── 20251217031644_UpdateEF10.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Models/ │ ├── AccountViewModels/ │ │ ├── ExternalLoginConfirmationViewModel.cs │ │ ├── ForgotPasswordViewModel.cs │ │ ├── LoginViewModel.cs │ │ ├── RegisterViewModel.cs │ │ ├── ResetPasswordViewModel.cs │ │ ├── SendCodeViewModel.cs │ │ └── VerifyCodeViewModel.cs │ ├── ApplicationUser.cs │ ├── ManageViewModels/ │ │ ├── AddPhoneNumberViewModel.cs │ │ ├── ChangePasswordViewModel.cs │ │ ├── ConfigureTwoFactorViewModel.cs │ │ ├── FactorViewModel.cs │ │ ├── IndexViewModel.cs │ │ ├── ManageLoginsViewModel.cs │ │ ├── RemoveLoginViewModel.cs │ │ ├── SetPasswordViewModel.cs │ │ └── VerifyPhoneNumberViewModel.cs │ ├── Message.cs │ ├── RoleViewModels/ │ │ ├── EditRoleVm.cs │ │ └── ModifyRoleVm.cs │ ├── SalesOrderDetail.cs │ ├── SidebarMenu.cs │ ├── SuperAdminViewModels/ │ │ └── CreateVm.cs │ └── UserAudit.cs ├── Program.cs ├── Project_Readme.html ├── Properties/ │ └── launchSettings.json ├── Services/ │ ├── IEmailSender.cs │ ├── ISmsSender.cs │ ├── MessageServices.cs │ └── RequestLoggingMiddleware.cs ├── ViewComponents/ │ ├── BreadcrumbViewComponent.cs │ ├── ControlSidebarViewComponent.cs │ ├── FooterViewComponent.cs │ ├── HeaderViewComponent.cs │ ├── MenuMessageViewComponent.cs │ ├── MenuNotificationViewComponent.cs │ ├── MenuTaskViewComponent.cs │ ├── MenuUserViewComponent.cs │ ├── PageAlertViewComponent.cs │ ├── PageHeaderViewComponent.cs │ └── SidebarViewComponent.cs ├── Views/ │ ├── Account/ │ │ ├── ConfirmEmail.cshtml │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── Lockout.cshtml │ │ ├── Login.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── SendCode.cshtml │ │ └── VerifyCode.cshtml │ ├── Home/ │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ ├── Error.cshtml │ │ └── Index.cshtml │ ├── Manage/ │ │ ├── AddPhoneNumber.cshtml │ │ ├── ChangePassword.cshtml │ │ ├── Index.cshtml │ │ ├── ManageLogins.cshtml │ │ ├── SetPassword.cshtml │ │ └── VerifyPhoneNumber.cshtml │ ├── Role/ │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Shared/ │ │ ├── Components/ │ │ │ ├── Breadcrumb/ │ │ │ │ └── Default.cshtml │ │ │ ├── ControlSidebar/ │ │ │ │ └── Default.cshtml │ │ │ ├── Footer/ │ │ │ │ └── Default.cshtml │ │ │ ├── Header/ │ │ │ │ └── Default.cshtml │ │ │ ├── MenuMessage/ │ │ │ │ └── Default.cshtml │ │ │ ├── MenuNotification/ │ │ │ │ └── Default.cshtml │ │ │ ├── MenuTask/ │ │ │ │ └── Default.cshtml │ │ │ ├── MenuUser/ │ │ │ │ └── Default.cshtml │ │ │ ├── PageAlert/ │ │ │ │ └── Default.cshtml │ │ │ ├── PageHeader/ │ │ │ │ └── Default.cshtml │ │ │ └── Sidebar/ │ │ │ └── Default.cshtml │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── SuperAdmin/ │ │ ├── ChangePassword.cshtml │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── UserLogs/ │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json ├── bundleconfig.json ├── libman.json ├── web.config └── wwwroot/ ├── _references.js ├── css/ │ ├── animation.css │ ├── error.css │ └── site.css ├── files/ │ └── SalesOrderDetail.txt └── js/ └── site.js