finalizare 1.0
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
@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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user