All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m14s
14 lines
472 B
Plaintext
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>
|
|
Cerrar sesión
|
|
</a>
|
|
</Authorized>
|
|
<NotAuthorized>
|
|
<a href="Registro">Registrarse</a>
|
|
<a href="Login" class="nav-link btn btn-link">Ingresar</a>
|
|
</NotAuthorized>
|
|
</AuthorizeView> |