TinyBlazorAdmin
TinyBlazorAdmin copied to clipboard
Authentication
So, I am trying to get the Admin Site up and running. I cloned the site, and now I am running the project in VS 2022.
The site opens in the browser as expected, but then I l click the to log in. the app goes to http://localhost:5000/login, and then shows a 404 as there is no page with a route of "login".
I see a component name "RedirectToLogin" but it doesn't appear to be used anywhere.
I see these lines commented out in Program.cs. Was that intentional?
builder.Services.AddMsalAuthentication(options =>
{
builder.Configuration.Bind("AzureAd", options.ProviderOptions.Authentication);
});
Just trying to get the site up and running! Want to use the url shortner on a project, and also it is a good learning experience for me.