Leandro Hernan Rojas bedee403b6
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m14s
Add Patch Fullname Claim
2025-04-29 20:03:48 -03:00

14 lines
472 B
Plaintext

<AuthorizeView>
<Authorized>
<span>Bienvenido, @(context.User.FindFirst("fullName")?.Value ?? context.User.Identity?.Name)!</span>
<a href="Logout" class="btn-logout">
<i class="oi oi-account-logout"></i>
&nbsp;Cerrar sesión
</a>
</Authorized>
<NotAuthorized>
<a href="Registro">Registrarse</a>
<a href="Login" class="nav-link btn btn-link">Ingresar</a>
</NotAuthorized>
</AuthorizeView>