├── .gitattributes ├── .gitignore ├── AspNetCoreIdentityApp.Web.sln └── AspNetCoreIdentityApp.Web ├── Areas └── Admin │ ├── Controllers │ ├── HomeController.cs │ └── RolesController.cs │ ├── Models │ ├── AssignRoleToUserViewModel.cs │ ├── RoleCreateViewModel.cs │ ├── RoleUpdateViewModel.cs │ ├── RoleViewModel.cs │ └── UserViewModel.cs │ └── Views │ ├── Home │ ├── Index.cshtml │ └── UserList.cshtml │ ├── Roles │ ├── AssignRoleToUser.cshtml │ ├── Index.cshtml │ ├── RoleCreate.cshtml │ └── RoleUpdate.cshtml │ ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _Layout.cshtml.css │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── AspNetCoreIdentityApp.Web.csproj ├── ClaimProvider └── UserClaimProvider.cs ├── Controllers ├── HomeController.cs ├── MemberController.cs └── OrderController.cs ├── CustomValidations ├── PasswordValidator.cs └── UserValidator.cs ├── Extenisons ├── ModelStateExtensions.cs └── StartupExtensions.cs ├── Localizations └── LocalizationIdentityErrorDescriber.cs ├── Migrations ├── 20221018130855_initial.Designer.cs ├── 20221018130855_initial.cs ├── 20230108000031_update_app_user.Designer.cs ├── 20230108000031_update_app_user.cs ├── 20230108000951_update_birthDate_property.Designer.cs ├── 20230108000951_update_birthDate_property.cs ├── 20230108003014_update_gender_property.Designer.cs ├── 20230108003014_update_gender_property.cs ├── 20230108003109_update_gender_property_2.Designer.cs ├── 20230108003109_update_gender_property_2.cs └── AppDbContextModelSnapshot.cs ├── Models ├── AppDbContext.cs ├── AppRole.cs ├── AppUser.cs ├── ErrorViewModel.cs └── Gender.cs ├── OptionsModels └── EmailSettings.cs ├── Permissions └── Permissions.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Requirements ├── ExchangeExpireRequirement.cs └── ViolenceRequirement.cs ├── Seeds └── PermissionSeed.cs ├── Services ├── EmailService.cs └── IEmailService.cs ├── TagHelpers ├── UserPictureThumbnailTagHelper.cs └── UserRoleNamesTagHelper.cs ├── ViewModels ├── ClaimViewModel.cs ├── ForgetPasswordViewModel.cs ├── PasswordChangeViewModel.cs ├── ResetPasswordViewModel.cs ├── SignInViewModel.cs ├── SignUpViewModel.cs ├── UserEditViewModel.cs └── UserViewModel.cs ├── Views ├── Home │ ├── ForgetPassword.cshtml │ ├── Index.cshtml │ ├── Privacy.cshtml │ ├── ResetPassword.cshtml │ ├── SignIn.cshtml │ └── SignUp.cshtml ├── Member │ ├── AccessDenied.cshtml │ ├── AnkaraPage.cshtml │ ├── Claims.cshtml │ ├── ExchangePage.cshtml │ ├── Index.cshtml │ ├── PasswordChange.cshtml │ ├── UserEdit.cshtml │ └── ViolencePage.cshtml ├── Order │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _Layout.cshtml.css │ ├── _NavbarLogin.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot ├── css └── site.css ├── favicon.ico ├── js └── site.js ├── lib ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── userpictures ├── 1357d32a-7aa4-48d0-9510-455ea38c1858.jpg ├── a96dc58d-df93-4d57-bf36-4c621c2dc846.jpg ├── c4a48a6b-66ff-4192-8aef-bcefb8bda31f.png ├── default_user_picture.jpg └── efebcb8d-ace4-4a2e-b4e4-48dfe1b2bf56.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/.gitignore -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web.sln -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Controllers/HomeController.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Controllers/RolesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Controllers/RolesController.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Models/AssignRoleToUserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Models/AssignRoleToUserViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Models/RoleCreateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Models/RoleCreateViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Models/RoleUpdateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Models/RoleUpdateViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Models/RoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Models/RoleViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Models/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Models/UserViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | 2 | @{ 3 | ViewData["Title"] = "Index"; 4 | } 5 | 6 |

Admin Paneline hoş geldiniz.

7 | 8 | -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Home/UserList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Home/UserList.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Roles/AssignRoleToUser.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Roles/AssignRoleToUser.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Roles/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Roles/Index.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Roles/RoleCreate.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Roles/RoleCreate.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Roles/RoleUpdate.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Roles/RoleUpdate.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Areas/Admin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/AspNetCoreIdentityApp.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/AspNetCoreIdentityApp.Web.csproj -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ClaimProvider/UserClaimProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ClaimProvider/UserClaimProvider.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Controllers/MemberController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Controllers/MemberController.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Controllers/OrderController.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/CustomValidations/PasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/CustomValidations/PasswordValidator.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/CustomValidations/UserValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/CustomValidations/UserValidator.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Extenisons/ModelStateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Extenisons/ModelStateExtensions.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Extenisons/StartupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Extenisons/StartupExtensions.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Localizations/LocalizationIdentityErrorDescriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Localizations/LocalizationIdentityErrorDescriber.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20221018130855_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20221018130855_initial.Designer.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20221018130855_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20221018130855_initial.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20230108000031_update_app_user.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20230108000031_update_app_user.Designer.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20230108000031_update_app_user.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20230108000031_update_app_user.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20230108000951_update_birthDate_property.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20230108000951_update_birthDate_property.Designer.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20230108000951_update_birthDate_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20230108000951_update_birthDate_property.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20230108003014_update_gender_property.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20230108003014_update_gender_property.Designer.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20230108003014_update_gender_property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20230108003014_update_gender_property.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20230108003109_update_gender_property_2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20230108003109_update_gender_property_2.Designer.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/20230108003109_update_gender_property_2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/20230108003109_update_gender_property_2.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Migrations/AppDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Migrations/AppDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Models/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Models/AppDbContext.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Models/AppRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Models/AppRole.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Models/AppUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Models/AppUser.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Models/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Models/Gender.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/OptionsModels/EmailSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/OptionsModels/EmailSettings.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Permissions/Permissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Permissions/Permissions.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Program.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Requirements/ExchangeExpireRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Requirements/ExchangeExpireRequirement.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Requirements/ViolenceRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Requirements/ViolenceRequirement.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Seeds/PermissionSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Seeds/PermissionSeed.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Services/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Services/EmailService.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Services/IEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Services/IEmailService.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/TagHelpers/UserPictureThumbnailTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/TagHelpers/UserPictureThumbnailTagHelper.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/TagHelpers/UserRoleNamesTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/TagHelpers/UserRoleNamesTagHelper.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ViewModels/ClaimViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ViewModels/ClaimViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ViewModels/ForgetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ViewModels/ForgetPasswordViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ViewModels/PasswordChangeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ViewModels/PasswordChangeViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ViewModels/SignInViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ViewModels/SignInViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ViewModels/SignUpViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ViewModels/SignUpViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ViewModels/UserEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ViewModels/UserEditViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/ViewModels/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/ViewModels/UserViewModel.cs -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Home/ForgetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Home/ForgetPassword.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Home/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Home/ResetPassword.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Home/SignIn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Home/SignIn.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Home/SignUp.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Home/SignUp.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Member/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Member/AccessDenied.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Member/AnkaraPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Member/AnkaraPage.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Member/Claims.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Member/Claims.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Member/ExchangePage.cshtml: -------------------------------------------------------------------------------- 1 | 2 | @{ 3 | ViewData["Title"] = "ExchangePage"; 4 | } 5 | 6 |

Borsa Sayfası

7 | 8 | -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Member/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Member/Index.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Member/PasswordChange.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Member/PasswordChange.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Member/UserEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Member/UserEdit.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Member/ViolencePage.cshtml: -------------------------------------------------------------------------------- 1 | 2 | @{ 3 | ViewData["Title"] = "ViolencePolicy"; 4 | } 5 | 6 |

Şiddet içerikli videolar

7 | 8 | -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Order/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Order/Index.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Shared/_NavbarLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Shared/_NavbarLogin.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/appsettings.Development.json -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/appsettings.json -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/userpictures/1357d32a-7aa4-48d0-9510-455ea38c1858.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/userpictures/1357d32a-7aa4-48d0-9510-455ea38c1858.jpg -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/userpictures/a96dc58d-df93-4d57-bf36-4c621c2dc846.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/userpictures/a96dc58d-df93-4d57-bf36-4c621c2dc846.jpg -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/userpictures/c4a48a6b-66ff-4192-8aef-bcefb8bda31f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/userpictures/c4a48a6b-66ff-4192-8aef-bcefb8bda31f.png -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/userpictures/default_user_picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/userpictures/default_user_picture.jpg -------------------------------------------------------------------------------- /AspNetCoreIdentityApp.Web/wwwroot/userpictures/efebcb8d-ace4-4a2e-b4e4-48dfe1b2bf56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyAspNetCoreIdentity/HEAD/AspNetCoreIdentityApp.Web/wwwroot/userpictures/efebcb8d-ace4-4a2e-b4e4-48dfe1b2bf56.png --------------------------------------------------------------------------------