Lieb-Website/Lieb/Pages/RedirectToLogin.razor
2022-02-13 20:40:15 +01:00

11 lines
255 B
Text

@using Microsoft.AspNetCore.Components
@inject NavigationManager Navigation
@code
{
protected override void OnInitialized()
{
//This auto redirects a user to the login page
Navigation.NavigateTo("Account/Login", true);
}
}