21 lines
439 B
Plaintext
21 lines
439 B
Plaintext
@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("/");
|
|
}
|
|
|
|
} |