├── readme.md ├── DevReach ├── DevReach │ ├── Client │ │ ├── Pages │ │ │ ├── AddGig.razor.css │ │ │ ├── Index.razor │ │ │ ├── Authentication.razor │ │ │ ├── FetchData.razor │ │ │ └── AddGig.razor │ │ ├── wwwroot │ │ │ ├── favicon.ico │ │ │ ├── css │ │ │ │ ├── open-iconic │ │ │ │ │ ├── font │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ │ │ └── open-iconic.woff │ │ │ │ │ │ └── css │ │ │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ │ ├── ICON-LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── FONT-LICENSE │ │ │ │ └── app.css │ │ │ └── index.html │ │ ├── Shared │ │ │ ├── RedirectToLogin.razor │ │ │ ├── MainLayout.razor │ │ │ ├── SurveyPrompt.razor │ │ │ ├── LoginDisplay.razor │ │ │ ├── NavMenu.razor.css │ │ │ ├── NavMenu.razor │ │ │ └── MainLayout.razor.css │ │ ├── Services │ │ │ └── GigService.cs │ │ ├── _Imports.razor │ │ ├── DevReach.Client.csproj │ │ ├── App.razor │ │ ├── Program.cs │ │ └── CustomUserFactory.cs │ ├── Server │ │ ├── Pages │ │ │ ├── _ViewStart.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ └── Error.cshtml │ │ ├── Areas │ │ │ └── Identity │ │ │ │ ├── Pages │ │ │ │ ├── Account │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ ├── Register.cshtml │ │ │ │ │ ├── Login.cshtml │ │ │ │ │ ├── Login.cshtml.cs │ │ │ │ │ └── Register.cshtml.cs │ │ │ │ ├── _ViewStart.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── Shared │ │ │ │ │ └── _LoginPartial.cshtml │ │ │ │ └── IdentityHostingStartup.cs │ │ ├── Properties │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── ScaffoldingReadMe.txt │ │ ├── wwwroot │ │ │ ├── js │ │ │ │ └── site.js │ │ │ ├── lib │ │ │ │ ├── jquery-validation │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── dist │ │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ ├── bootstrap │ │ │ │ │ └── LICENSE │ │ │ │ ├── jquery │ │ │ │ │ └── LICENSE.txt │ │ │ │ └── jquery-validation-unobtrusive │ │ │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ │ │ └── jquery.validate.unobtrusive.js │ │ │ └── css │ │ │ │ └── site.css │ │ ├── Models │ │ │ └── ApplicationUser.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── Program.cs │ │ ├── Data │ │ │ ├── Migrations │ │ │ │ ├── 20201019132635_SeedRoles.cs │ │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ │ ├── ApplicationDbContextModelSnapshot.cs │ │ │ │ └── 20201019132635_SeedRoles.Designer.cs │ │ │ └── ApplicationDbContext.cs │ │ ├── Controllers │ │ │ ├── OidcConfigurationController.cs │ │ │ └── WeatherForecastController.cs │ │ ├── DevReach.Server.csproj │ │ └── Startup.cs │ └── Shared │ │ ├── DevReach.Shared.csproj │ │ ├── WeatherForecast.cs │ │ └── Gig.cs └── DevReach.sln └── .gitignore /readme.md: -------------------------------------------------------------------------------- 1 | Let's begin 2 | -------------------------------------------------------------------------------- /DevReach/DevReach/Client/Pages/AddGig.razor.css: -------------------------------------------------------------------------------- 1 | h3{ 2 | color:red; 3 | } -------------------------------------------------------------------------------- /DevReach/DevReach/Server/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /DevReach/DevReach/Server/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using DevReach.Server.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /DevReach/DevReach/Server/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | 2 | @{ 3 | Layout = "/Pages/Shared/_Layout.cshtml"; 4 | } 5 | -------------------------------------------------------------------------------- /DevReach/DevReach/Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EngstromJimmy/devreach-blazor/main/DevReach/DevReach/Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /DevReach/DevReach/Client/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |
@gig.Location
13 |You are not authorized to access this resource.
13 | } 14 |Sorry, there's nothing at this address.
20 |
24 | Request ID: @Model.RequestId
25 |
30 | Swapping to the Development environment displays detailed information about the error that occurred. 31 |
32 |33 | The Development environment shouldn't be enabled for deployed applications. 34 | It can result in displaying sensitive information from exceptions to end users. 35 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 36 | and restarting the app. 37 |
38 |42 | There are no external authentication services configured. See this article 43 | for details on setting up this ASP.NET application to support logging in via external services. 44 |
45 |60 | There are no external authentication services configured. See this article 61 | for details on setting up this ASP.NET application to support logging in via external services. 62 |
63 |