10379 Posts in 2194 Topics by 1710 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 222 Views |
-
creating a login/out link

11 January 2012 at 2:40pm
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
-
Re: creating a login/out link

11 January 2012 at 4:04pm Last edited: 11 January 2012 4:05pm
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 %>
| 222 Views | ||
|
Page:
1
|
Go to Top |


