├── .gitignore ├── .vscode └── tasks.json ├── LICENSE ├── README.md ├── sportal-static-content ├── EmptyClass.cs ├── sportal-static-content.csproj └── wwwroot │ ├── css │ ├── brands.css │ ├── fontawesome.css │ ├── matBlazor.css │ └── style.css │ ├── js │ └── matBlazor.js │ └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ ├── source-sans-pro-v21-latin-regular.woff │ └── source-sans-pro-v21-latin-regular.woff2 ├── sportal.sln └── sportal ├── App.razor ├── Data ├── LoginObject.cs ├── SportalFolder.cs ├── TenantData.cs └── User.cs ├── EmbeddedBlazorContentHelpers ├── EmbeddedBlazorContentManager.cs ├── EmbeddedBlazorContentProvider.cs ├── HtmlHelperExtension.cs └── SportalException.cs ├── LICENSE ├── Pages ├── Error.cshtml ├── MainLayout.razor ├── PageFooter.razor ├── PageHeader.razor ├── SettingsDialog.razor ├── UserTiles.razor └── _Host.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Services ├── JWTService.cs └── UserService.cs ├── Startup.cs ├── _Imports.razor ├── appsettings.Development.json ├── appsettings.json └── sportal.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/README.md -------------------------------------------------------------------------------- /sportal-static-content/EmptyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/EmptyClass.cs -------------------------------------------------------------------------------- /sportal-static-content/sportal-static-content.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/sportal-static-content.csproj -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/css/brands.css -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/css/fontawesome.css -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/css/matBlazor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/css/matBlazor.css -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/css/style.css -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/js/matBlazor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/js/matBlazor.js -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/source-sans-pro-v21-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/source-sans-pro-v21-latin-regular.woff -------------------------------------------------------------------------------- /sportal-static-content/wwwroot/webfonts/source-sans-pro-v21-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal-static-content/wwwroot/webfonts/source-sans-pro-v21-latin-regular.woff2 -------------------------------------------------------------------------------- /sportal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal.sln -------------------------------------------------------------------------------- /sportal/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/App.razor -------------------------------------------------------------------------------- /sportal/Data/LoginObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Data/LoginObject.cs -------------------------------------------------------------------------------- /sportal/Data/SportalFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Data/SportalFolder.cs -------------------------------------------------------------------------------- /sportal/Data/TenantData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Data/TenantData.cs -------------------------------------------------------------------------------- /sportal/Data/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Data/User.cs -------------------------------------------------------------------------------- /sportal/EmbeddedBlazorContentHelpers/EmbeddedBlazorContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/EmbeddedBlazorContentHelpers/EmbeddedBlazorContentManager.cs -------------------------------------------------------------------------------- /sportal/EmbeddedBlazorContentHelpers/EmbeddedBlazorContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/EmbeddedBlazorContentHelpers/EmbeddedBlazorContentProvider.cs -------------------------------------------------------------------------------- /sportal/EmbeddedBlazorContentHelpers/HtmlHelperExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/EmbeddedBlazorContentHelpers/HtmlHelperExtension.cs -------------------------------------------------------------------------------- /sportal/EmbeddedBlazorContentHelpers/SportalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/EmbeddedBlazorContentHelpers/SportalException.cs -------------------------------------------------------------------------------- /sportal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/LICENSE -------------------------------------------------------------------------------- /sportal/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Pages/Error.cshtml -------------------------------------------------------------------------------- /sportal/Pages/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Pages/MainLayout.razor -------------------------------------------------------------------------------- /sportal/Pages/PageFooter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Pages/PageFooter.razor -------------------------------------------------------------------------------- /sportal/Pages/PageHeader.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Pages/PageHeader.razor -------------------------------------------------------------------------------- /sportal/Pages/SettingsDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Pages/SettingsDialog.razor -------------------------------------------------------------------------------- /sportal/Pages/UserTiles.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Pages/UserTiles.razor -------------------------------------------------------------------------------- /sportal/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Pages/_Host.cshtml -------------------------------------------------------------------------------- /sportal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Program.cs -------------------------------------------------------------------------------- /sportal/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Properties/launchSettings.json -------------------------------------------------------------------------------- /sportal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/README.md -------------------------------------------------------------------------------- /sportal/Services/JWTService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Services/JWTService.cs -------------------------------------------------------------------------------- /sportal/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Services/UserService.cs -------------------------------------------------------------------------------- /sportal/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/Startup.cs -------------------------------------------------------------------------------- /sportal/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/_Imports.razor -------------------------------------------------------------------------------- /sportal/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/appsettings.Development.json -------------------------------------------------------------------------------- /sportal/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/appsettings.json -------------------------------------------------------------------------------- /sportal/sportal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eapowertools/sportal/HEAD/sportal/sportal.csproj --------------------------------------------------------------------------------