Files
SilkierQuartz/Source/Examples/AspNetCore31/Pages/Index.cshtml
MysticBoy 8c2231d472 fixe for Endpoint Uixe.Server.Controllers.AccountController.Login (Uixe.Server) contains authorization metadata,
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(...).
2020-01-09 10:53:00 +08:00

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>