how do i add a login/out link on the front end of the site?
i would like it so that when a user is not logged in it shows log in and when they are dynamicly says log out
any ideas?
thanks
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
how do i add a login/out link on the front end of the site?
i would like it so that when a user is not logged in it shows log in and when they are dynamicly says log out
any ideas?
thanks
In your Page.ss (or other .ss template file) you can use something like this:
<% if CurrentMember %>
<a href="/Security/logout">Log out</a>
<% else %>
<a href="/Security/login">Log in</a>
<% end_if %>