In your skin, simply add the following to the desired location.
Vb.net
<% If Request.IsAuthenticated %>
[Logged in]
<% End If %>
WITH#
<% if (Request.IsAuthenticated) { %>
[Logged in]
<% } %>
This will display the text “[Login]” only if the user is logged in.
source
share