TourIAm/TIAMSharedUI/Pages/Components/AuthComponent.razor

17 lines
368 B
Plaintext

@using TIAMSharedUI.Shared.Components
@{
if(IsVisible)
{
<div style="position:fixed; background-color:black; color: white; bottom: 0px; width: 100%;">
<p>AuthComponent: </p><p>Logged in: @IsLoggedIn</p>
<button class="btn btn-primary" @onclick="ToggleAuthComponent">Toggle Login</button>
</div>
}
}
@code {
}