Display "signed In" Or "sign Up" Based On "my Account"

How do you show the status of whether someone is signed in without having to click on "My Account"?

Also, if that "status" could be "hot" to allow signup, signout, etc?

design/themes/THEME/templates/blocks/my_account.tpl

try to replace

{$title}

with


{if $auth.user_id}  
    {if $user_info.firstname || $user_info.lastname}
        {$user_info.firstname} {$user_info.lastname}
    {else}
        {$user_info.email}
    {/if}
{else}
    {$title}
{/if}

Then clear cache

(!) Not tested

Thank you Ecom

Just what I needed.