mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-21 16:52:27 +00:00
* Rework login UI design and change email setup flow * Remove unused middleware * Fix button not lining up with input fields
12 lines
No EOL
324 B
C#
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();
|
|
} |