using AppLibs.Libs; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace TWASys_App.Controllers { [AllowAnonymous] public class LoginController : Controller { [Layout(LayoutOptions.Custom, "Login")] [PageInfor("10001", "Login")] public async Task Index() { return await this.ViewAsync(); } } }