authenticated
Previous  Top  Next

A boolean variable that is true if the reader is currently logged in.



Example
In the example below, the text "You are currently logged in" is displayed if the user is logged in. Otherwise, the text "You are currently not logged in" is displayed.

{{if authenticated}}  
You are currently logged in.  
{{else}}  
You are currently not logged in.  
{{/if}}