├── .gitattributes ├── .gitignore ├── README.md ├── VOD.API ├── Controllers │ ├── CoursesController.cs │ ├── DownloadsController.cs │ ├── InstructorsController.cs │ ├── ModulesController.cs │ ├── TokenController.cs │ └── VideosController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── ITokenService.cs │ └── TokenService.cs ├── Startup.cs ├── VOD.API.csproj ├── appsettings.Development.json └── appsettings.json ├── VOD.Admin ├── Areas │ └── Identity │ │ ├── IdentityHostingStartup.cs │ │ └── Pages │ │ ├── Account │ │ ├── Login.cshtml │ │ ├── Login.cshtml.cs │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Models │ └── CardViewModel.cs ├── Pages │ ├── Courses │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Downloads │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Instructors │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Modules │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _AdminMenuPartial.cshtml │ │ ├── _BackToIndexButtonsPartial.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _DeletePageButtons.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ ├── _MenuPartial.cshtml │ │ ├── _PageButtonsPartial.cshtml │ │ ├── _TableRowButtonsPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Users │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Details.cshtml │ │ ├── Details.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Videos │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── _CardPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── ScaffoldingReadme.txt ├── Startup.cs ├── TagHelpers │ ├── AlertTagHelper.cs │ └── BtnTagHelper.cs ├── VOD.Admin.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ ├── dashboard.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-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.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 ├── VOD.Common ├── AutoMapper │ └── MapProfile.cs ├── DTOModels │ ├── Admin │ │ ├── ButtonDTO.cs │ │ ├── CourseDTO.cs │ │ ├── DownloadDTO.cs │ │ ├── InstructorDTO.cs │ │ ├── ModuleDTO.cs │ │ └── VideoDTO.cs │ ├── LoginUserDTO.cs │ ├── RegisterUserDTO.cs │ ├── TokenDTO.cs │ ├── UI │ │ ├── CourseDTO.cs │ │ ├── DownloadDTO.cs │ │ ├── InstructorDTO.cs │ │ ├── LessonInfoDTO.cs │ │ ├── ModuleDTO.cs │ │ └── VideoDTO.cs │ └── UserDTO.cs ├── Entities │ ├── Course.cs │ ├── Download.cs │ ├── Instructor.cs │ ├── Module.cs │ ├── UserCourse.cs │ ├── VODUser.cs │ └── Video.cs ├── Exceptions │ └── HttpResponseException.cs ├── Extensions │ ├── HttpClientExtensions.cs │ ├── ListExtensions.cs │ ├── StremExtensions.cs │ └── StringExtensions.cs ├── Services │ ├── AdminAPIService.cs │ ├── HttpClientFactoryService.cs │ ├── IAdminService.cs │ ├── IHttpClientFactoryService.cs │ ├── IJwtTokenService.cs │ └── JwtTokenService.cs └── VOD.Common.csproj ├── VOD.Database ├── Contexts │ └── VODContext.cs ├── Migrations │ ├── 20190427111842_Initial.Designer.cs │ ├── 20190427111842_Initial.cs │ ├── 20190427140323_CreateEntityTables.Designer.cs │ ├── 20190427140323_CreateEntityTables.cs │ ├── DbInitializer.cs │ └── VODContextModelSnapshot.cs ├── Services │ ├── AdminEFService.cs │ ├── DbReadService.cs │ ├── DbWriteService.cs │ ├── IDbReadService.cs │ ├── IDbWriteService.cs │ ├── IUIReadService.cs │ ├── IUserService.cs │ ├── UIReadService.cs │ └── UserService.cs └── VOD.Database.csproj ├── VOD.UI ├── Areas │ └── Identity │ │ ├── IdentityHostingStartup.cs │ │ └── Pages │ │ ├── Account │ │ ├── Login.cshtml │ │ ├── Login.cshtml.cs │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Controllers │ ├── HomeController.cs │ └── MembershipController.cs ├── Models │ ├── ErrorViewModel.cs │ └── MembershipViewModels │ │ ├── CourseViewModel.cs │ │ ├── DashboardViewModel.cs │ │ └── VideoViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ScaffoldingReadme.txt ├── Startup.cs ├── VOD.UI.csproj ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Membership │ │ ├── Course.cshtml │ │ ├── Dashboard.cshtml │ │ ├── Video.cshtml │ │ ├── _CourseCardPartial.cshtml │ │ ├── _InstructorBioPartial.cshtml │ │ ├── _ModuleDownloadsPartial.cshtml │ │ ├── _ModuleVideosPartial.cshtml │ │ ├── _VideoComingUpPartial.cshtml │ │ └── _VideoPlayerPartial.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ ├── login-register.css │ ├── membership.css │ ├── navigation.css │ └── site.css │ ├── favicon.ico │ ├── images │ ├── Ice-Age-Scrat-icon.png │ ├── Logos │ │ └── membership-logo.png │ ├── avatar.png │ ├── course1.jpg │ ├── course2.jpg │ ├── course3.jpg │ ├── laptop.jpg │ ├── video1.jpg │ ├── video2.jpg │ ├── video3.jpg │ ├── video4.jpg │ └── video5.jpg │ ├── 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-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.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 ├── VideoOnDemand.UI ├── .bowerrc ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ └── ManageController.cs ├── Data │ ├── ApplicationDbContext.cs │ └── Migrations │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ └── ApplicationDbContextModelSnapshot.cs ├── Extensions │ ├── EmailSenderExtensions.cs │ └── UrlHelperExtensions.cs ├── Models │ ├── AccountViewModels │ │ ├── ExternalLoginViewModel.cs │ │ ├── ForgotPasswordViewModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LoginWith2faViewModel.cs │ │ ├── LoginWithRecoveryCodeViewModel.cs │ │ ├── RegisterViewModel.cs │ │ └── ResetPasswordViewModel.cs │ ├── ApplicationUser.cs │ ├── ErrorViewModel.cs │ └── ManageViewModels │ │ ├── ChangePasswordViewModel.cs │ │ ├── EnableAuthenticatorViewModel.cs │ │ ├── ExternalLoginsViewModel.cs │ │ ├── GenerateRecoveryCodesViewModel.cs │ │ ├── IndexViewModel.cs │ │ ├── RemoveLoginViewModel.cs │ │ ├── SetPasswordViewModel.cs │ │ └── TwoFactorAuthenticationViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── EmailSender.cs │ └── IEmailSender.cs ├── Startup.cs ├── VideoOnDemand.UI.csproj ├── Views │ ├── Account │ │ ├── AccessDenied.cshtml │ │ ├── ConfirmEmail.cshtml │ │ ├── ExternalLogin.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── Lockout.cshtml │ │ ├── Login.cshtml │ │ ├── LoginWith2fa.cshtml │ │ ├── LoginWithRecoveryCode.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ └── SignedOut.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Manage │ │ ├── ChangePassword.cshtml │ │ ├── Disable2fa.cshtml │ │ ├── EnableAuthenticator.cshtml │ │ ├── ExternalLogins.cshtml │ │ ├── GenerateRecoveryCodes.cshtml │ │ ├── Index.cshtml │ │ ├── ManageNavPages.cs │ │ ├── ResetAuthenticator.cshtml │ │ ├── SetPassword.cshtml │ │ ├── TwoFactorAuthentication.cshtml │ │ ├── _Layout.cshtml │ │ ├── _ManageNav.cshtml │ │ ├── _StatusMessage.cshtml │ │ └── _ViewImports.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bower.json ├── bundleconfig.json └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── VideoOnDemand.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/README.md -------------------------------------------------------------------------------- /VOD.API/Controllers/CoursesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Controllers/CoursesController.cs -------------------------------------------------------------------------------- /VOD.API/Controllers/DownloadsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Controllers/DownloadsController.cs -------------------------------------------------------------------------------- /VOD.API/Controllers/InstructorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Controllers/InstructorsController.cs -------------------------------------------------------------------------------- /VOD.API/Controllers/ModulesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Controllers/ModulesController.cs -------------------------------------------------------------------------------- /VOD.API/Controllers/TokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Controllers/TokenController.cs -------------------------------------------------------------------------------- /VOD.API/Controllers/VideosController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Controllers/VideosController.cs -------------------------------------------------------------------------------- /VOD.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Program.cs -------------------------------------------------------------------------------- /VOD.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /VOD.API/Services/ITokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Services/ITokenService.cs -------------------------------------------------------------------------------- /VOD.API/Services/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Services/TokenService.cs -------------------------------------------------------------------------------- /VOD.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/Startup.cs -------------------------------------------------------------------------------- /VOD.API/VOD.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/VOD.API.csproj -------------------------------------------------------------------------------- /VOD.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/appsettings.Development.json -------------------------------------------------------------------------------- /VOD.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.API/appsettings.json -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/IdentityHostingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Areas/Identity/IdentityHostingStartup.cs -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using VOD.Admin.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Models/CardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Models/CardViewModel.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Courses/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Courses/Create.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Courses/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Courses/Create.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Courses/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Courses/Delete.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Courses/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Courses/Delete.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Courses/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Courses/Edit.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Courses/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Courses/Edit.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Courses/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Courses/Index.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Courses/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Courses/Index.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Downloads/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Downloads/Create.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Downloads/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Downloads/Create.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Downloads/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Downloads/Delete.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Downloads/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Downloads/Delete.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Downloads/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Downloads/Edit.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Downloads/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Downloads/Edit.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Downloads/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Downloads/Index.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Downloads/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Downloads/Index.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Error.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Index.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Instructors/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Instructors/Create.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Instructors/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Instructors/Create.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Instructors/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Instructors/Delete.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Instructors/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Instructors/Delete.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Instructors/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Instructors/Edit.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Instructors/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Instructors/Edit.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Instructors/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Instructors/Index.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Instructors/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Instructors/Index.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Modules/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Modules/Create.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Modules/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Modules/Create.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Modules/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Modules/Delete.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Modules/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Modules/Delete.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Modules/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Modules/Edit.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Modules/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Modules/Edit.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Modules/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Modules/Index.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Modules/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Modules/Index.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_AdminMenuPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_AdminMenuPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_BackToIndexButtonsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_BackToIndexButtonsPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_DeletePageButtons.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_DeletePageButtons.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_MenuPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_MenuPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_PageButtonsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_PageButtonsPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_TableRowButtonsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_TableRowButtonsPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Create.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Create.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Delete.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Delete.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Details.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Details.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Edit.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Edit.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Index.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Users/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Users/Index.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Videos/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Videos/Create.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Videos/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Videos/Create.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Videos/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Videos/Delete.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Videos/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Videos/Delete.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Videos/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Videos/Edit.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Videos/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Videos/Edit.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/Videos/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Videos/Index.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/Videos/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/Videos/Index.cshtml.cs -------------------------------------------------------------------------------- /VOD.Admin/Pages/_CardPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/_CardPartial.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /VOD.Admin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Program.cs -------------------------------------------------------------------------------- /VOD.Admin/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Properties/launchSettings.json -------------------------------------------------------------------------------- /VOD.Admin/ScaffoldingReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/ScaffoldingReadme.txt -------------------------------------------------------------------------------- /VOD.Admin/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/Startup.cs -------------------------------------------------------------------------------- /VOD.Admin/TagHelpers/AlertTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/TagHelpers/AlertTagHelper.cs -------------------------------------------------------------------------------- /VOD.Admin/TagHelpers/BtnTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/TagHelpers/BtnTagHelper.cs -------------------------------------------------------------------------------- /VOD.Admin/VOD.Admin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/VOD.Admin.csproj -------------------------------------------------------------------------------- /VOD.Admin/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/appsettings.Development.json -------------------------------------------------------------------------------- /VOD.Admin/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/appsettings.json -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/css/dashboard.css -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/css/site.css -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/favicon.ico -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/js/site.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /VOD.Admin/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Admin/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /VOD.Common/AutoMapper/MapProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/AutoMapper/MapProfile.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/Admin/ButtonDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/Admin/ButtonDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/Admin/CourseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/Admin/CourseDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/Admin/DownloadDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/Admin/DownloadDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/Admin/InstructorDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/Admin/InstructorDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/Admin/ModuleDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/Admin/ModuleDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/Admin/VideoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/Admin/VideoDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/LoginUserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/LoginUserDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/RegisterUserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/RegisterUserDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/TokenDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/TokenDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/UI/CourseDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/UI/CourseDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/UI/DownloadDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/UI/DownloadDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/UI/InstructorDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/UI/InstructorDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/UI/LessonInfoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/UI/LessonInfoDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/UI/ModuleDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/UI/ModuleDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/UI/VideoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/UI/VideoDTO.cs -------------------------------------------------------------------------------- /VOD.Common/DTOModels/UserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/DTOModels/UserDTO.cs -------------------------------------------------------------------------------- /VOD.Common/Entities/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Entities/Course.cs -------------------------------------------------------------------------------- /VOD.Common/Entities/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Entities/Download.cs -------------------------------------------------------------------------------- /VOD.Common/Entities/Instructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Entities/Instructor.cs -------------------------------------------------------------------------------- /VOD.Common/Entities/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Entities/Module.cs -------------------------------------------------------------------------------- /VOD.Common/Entities/UserCourse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Entities/UserCourse.cs -------------------------------------------------------------------------------- /VOD.Common/Entities/VODUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Entities/VODUser.cs -------------------------------------------------------------------------------- /VOD.Common/Entities/Video.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Entities/Video.cs -------------------------------------------------------------------------------- /VOD.Common/Exceptions/HttpResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Exceptions/HttpResponseException.cs -------------------------------------------------------------------------------- /VOD.Common/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /VOD.Common/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /VOD.Common/Extensions/StremExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Extensions/StremExtensions.cs -------------------------------------------------------------------------------- /VOD.Common/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /VOD.Common/Services/AdminAPIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Services/AdminAPIService.cs -------------------------------------------------------------------------------- /VOD.Common/Services/HttpClientFactoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Services/HttpClientFactoryService.cs -------------------------------------------------------------------------------- /VOD.Common/Services/IAdminService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Services/IAdminService.cs -------------------------------------------------------------------------------- /VOD.Common/Services/IHttpClientFactoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Services/IHttpClientFactoryService.cs -------------------------------------------------------------------------------- /VOD.Common/Services/IJwtTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Services/IJwtTokenService.cs -------------------------------------------------------------------------------- /VOD.Common/Services/JwtTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/Services/JwtTokenService.cs -------------------------------------------------------------------------------- /VOD.Common/VOD.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Common/VOD.Common.csproj -------------------------------------------------------------------------------- /VOD.Database/Contexts/VODContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Contexts/VODContext.cs -------------------------------------------------------------------------------- /VOD.Database/Migrations/20190427111842_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Migrations/20190427111842_Initial.Designer.cs -------------------------------------------------------------------------------- /VOD.Database/Migrations/20190427111842_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Migrations/20190427111842_Initial.cs -------------------------------------------------------------------------------- /VOD.Database/Migrations/20190427140323_CreateEntityTables.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Migrations/20190427140323_CreateEntityTables.Designer.cs -------------------------------------------------------------------------------- /VOD.Database/Migrations/20190427140323_CreateEntityTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Migrations/20190427140323_CreateEntityTables.cs -------------------------------------------------------------------------------- /VOD.Database/Migrations/DbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Migrations/DbInitializer.cs -------------------------------------------------------------------------------- /VOD.Database/Migrations/VODContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Migrations/VODContextModelSnapshot.cs -------------------------------------------------------------------------------- /VOD.Database/Services/AdminEFService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/AdminEFService.cs -------------------------------------------------------------------------------- /VOD.Database/Services/DbReadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/DbReadService.cs -------------------------------------------------------------------------------- /VOD.Database/Services/DbWriteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/DbWriteService.cs -------------------------------------------------------------------------------- /VOD.Database/Services/IDbReadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/IDbReadService.cs -------------------------------------------------------------------------------- /VOD.Database/Services/IDbWriteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/IDbWriteService.cs -------------------------------------------------------------------------------- /VOD.Database/Services/IUIReadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/IUIReadService.cs -------------------------------------------------------------------------------- /VOD.Database/Services/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/IUserService.cs -------------------------------------------------------------------------------- /VOD.Database/Services/UIReadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/UIReadService.cs -------------------------------------------------------------------------------- /VOD.Database/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/Services/UserService.cs -------------------------------------------------------------------------------- /VOD.Database/VOD.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.Database/VOD.Database.csproj -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/IdentityHostingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Areas/Identity/IdentityHostingStartup.cs -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using VOD.UI.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /VOD.UI/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /VOD.UI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /VOD.UI/Controllers/MembershipController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Controllers/MembershipController.cs -------------------------------------------------------------------------------- /VOD.UI/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /VOD.UI/Models/MembershipViewModels/CourseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Models/MembershipViewModels/CourseViewModel.cs -------------------------------------------------------------------------------- /VOD.UI/Models/MembershipViewModels/DashboardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Models/MembershipViewModels/DashboardViewModel.cs -------------------------------------------------------------------------------- /VOD.UI/Models/MembershipViewModels/VideoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Models/MembershipViewModels/VideoViewModel.cs -------------------------------------------------------------------------------- /VOD.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Program.cs -------------------------------------------------------------------------------- /VOD.UI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Properties/launchSettings.json -------------------------------------------------------------------------------- /VOD.UI/ScaffoldingReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/ScaffoldingReadme.txt -------------------------------------------------------------------------------- /VOD.UI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Startup.cs -------------------------------------------------------------------------------- /VOD.UI/VOD.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/VOD.UI.csproj -------------------------------------------------------------------------------- /VOD.UI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/Course.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/Course.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/Dashboard.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/Dashboard.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/Video.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/Video.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/_CourseCardPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/_CourseCardPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/_InstructorBioPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/_InstructorBioPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/_ModuleDownloadsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/_ModuleDownloadsPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/_ModuleVideosPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/_ModuleVideosPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/_VideoComingUpPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/_VideoComingUpPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Membership/_VideoPlayerPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Membership/_VideoPlayerPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /VOD.UI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /VOD.UI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/appsettings.Development.json -------------------------------------------------------------------------------- /VOD.UI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/appsettings.json -------------------------------------------------------------------------------- /VOD.UI/wwwroot/css/login-register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/css/login-register.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/css/membership.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/css/membership.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/css/navigation.css: -------------------------------------------------------------------------------- 1 | #logout-menu-button { 2 | padding: 0; 3 | } 4 | -------------------------------------------------------------------------------- /VOD.UI/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/css/site.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/Ice-Age-Scrat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/Ice-Age-Scrat-icon.png -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/Logos/membership-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/Logos/membership-logo.png -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/avatar.png -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/course1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/course1.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/course2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/course2.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/course3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/course3.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/laptop.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/video1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/video1.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/video2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/video2.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/video3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/video3.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/video4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/video4.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/images/video5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/images/video5.jpg -------------------------------------------------------------------------------- /VOD.UI/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/js/site.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /VOD.UI/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VOD.UI/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /VideoOnDemand.UI/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /VideoOnDemand.UI/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Controllers/AccountController.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Controllers/ManageController.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Extensions/EmailSenderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Extensions/EmailSenderExtensions.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Extensions/UrlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Extensions/UrlHelperExtensions.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/AccountViewModels/ExternalLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/AccountViewModels/ExternalLoginViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/AccountViewModels/LoginWith2faViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/AccountViewModels/LoginWith2faViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ManageViewModels/EnableAuthenticatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ManageViewModels/EnableAuthenticatorViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ManageViewModels/ExternalLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ManageViewModels/ExternalLoginsViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ManageViewModels/GenerateRecoveryCodesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ManageViewModels/GenerateRecoveryCodesViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Program.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Properties/launchSettings.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/Services/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Services/EmailSender.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Services/IEmailSender.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Startup.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/VideoOnDemand.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/VideoOnDemand.UI.csproj -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Account/SignedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Account/SignedOut.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Home/About.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using VideoOnDemand.UI.Views.Manage -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /VideoOnDemand.UI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/appsettings.Development.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/appsettings.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/bower.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/bundleconfig.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/css/site.css -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /VideoOnDemand.UI/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.UI/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /VideoOnDemand.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csharpschool/VideoOnDemand22/HEAD/VideoOnDemand.sln --------------------------------------------------------------------------------