Logout
Log a user out immediately and redirect them elsewhere.
Example
{{ if should_logout_for_whatever_reason }}
{{ user:logout redirect="/somewhere" }}
{{ /if }}
This will immediately log a user out and redirect to /somewhere
if the condition is met.
If you’d like to just output a link, use the user:logout_url
tag.
Parameters
redirect
string |
Where the user should be redirected after logging out. Defaults to the home page. |
---|