finalizare 1.0
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
@page "/goodbye"
|
||||
@layout AuthLayout
|
||||
@inject NavigationManager NavigationManager
|
||||
|
||||
<h3>Goodbye</h3>
|
||||
|
||||
<div class="card mt-4">
|
||||
<div class="card-body">
|
||||
<p>Thank you for using our service. We're sorry to see you go.</p>
|
||||
<button class="btn btn-primary" @onclick="RedirectToHome">Go to Home Page</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
private void RedirectToHome()
|
||||
{
|
||||
NavigationManager.NavigateTo("/");
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user