using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace Cis.Web.Entry.Controllers; [AllowAnonymous] public class HomeController : Controller { public HomeController() { } public IActionResult Index() { ViewBag.Description = "Hello, dotnet."; return View(); } }