authenticated

Previous page  First page  Next page

authenticated is 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}}