Forum Discussion

skylinegtr's avatar
10 years ago

Sign In and Register not to show after logging in

Hi,

 

How do I make the Sign In and Register link not to display after a user sign in?  As you can see the image below. I don't want the Sign In and Register to show after logging in, but have the log out to display instead. Thanks!

 

test.png

  • Hi skylinegtr 

     

    You can use the user context object

     

    <#if user.registered>
    
    <#-- Code displaying the log out button -->
    
    <#else>
    
    <#-- Code displaying the register/sign in buttons -->
    </#if>

     

    Hope that helps,

  • PaoloT's avatar
    PaoloT
    Lithium Alumni (Retired)

    Hi skylinegtr 

     

    You can use the user context object

     

    <#if user.registered>
    
    <#-- Code displaying the log out button -->
    
    <#else>
    
    <#-- Code displaying the register/sign in buttons -->
    </#if>

     

    Hope that helps,