22 lines
609 B
Plaintext
22 lines
609 B
Plaintext
@inject NavigationManager Navigation
|
|
@layout MainLayout;
|
|
<link href="css/Components/PageNotFoundHandler.css" rel="stylesheet"/>
|
|
|
|
<div class="page-not-found-container">
|
|
<h1>Page Not Found</h1>
|
|
<p>The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
|
|
<ul>
|
|
<li>Check the URL for typos.</li>
|
|
<li>Return to the <a href="/">Homepage</a>.</li>
|
|
</ul>
|
|
<button class="btn btn-primary" @onclick="GoHome">Return to Home Page</button>
|
|
</div>
|
|
|
|
@code {
|
|
|
|
void GoHome()
|
|
{
|
|
Navigation.NavigateTo("/", true);
|
|
}
|
|
|
|
} |