mirror of
https://github.com/fergalmoran/SilkierQuartz.git
synced 2026-01-04 07:56:31 +00:00
but a middleware was not found that supports authorization.
Configure your application startup by adding app.UseAuthorization() inside the call to Configure(..) in
the application startup code. The call to app.UseAuthorization() must appear between app.UseRouting()
and app.UseEndpoints(...).
11 lines
265 B
Plaintext
11 lines
265 B
Plaintext
@page
|
|
@model IndexModel
|
|
@{
|
|
ViewData["Title"] = "Home page";
|
|
}
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Welcome</h1>
|
|
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
|
|
</div>
|