ProjectLighthouse/ProjectLighthouse.Servers.Website/Pages/Errors/NotFoundPage.cshtml.cs
Josh 7d187ee982
Change login UI and improve email setup flow (#619)
* Rework login UI design and change email setup flow

* Remove unused middleware

* Fix button not lining up with input fields
2023-01-09 19:43:56 -06:00

12 lines
No EOL
324 B
C#

using LBPUnion.ProjectLighthouse.Servers.Website.Pages.Layouts;
using Microsoft.AspNetCore.Mvc;
namespace LBPUnion.ProjectLighthouse.Servers.Website.Pages.Errors;
public class NotFoundPage : BaseLayout
{
public NotFoundPage(Database database) : base(database)
{}
public IActionResult OnGet() => this.Page();
}