@using Data_Coupler.Services
@using Data_Coupler.Pages
@inject IAuthenticationService AuthService
@implements IDisposable
@if (!AuthService.IsAuthenticated)
{
}
else
{
@{
// Se l'utente prova ad accedere alla pagina di login mentre è autenticato, reindirizza alla home
if (routeData.PageType == typeof(Data_Coupler.Pages.Login))
{
}
else
{
}
}
Not found