Skip to content

Commit b169812

Browse files
committed
updated style note to note
1 parent 3b25419 commit b169812

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/member/logout.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
[TOC]
1313

14-
STYLE NOTE: Someone "logs out" (verb, two words) using a "logout link" or "logout form" (adjective, one word).
14+
NOTE: Someone "logs out" (verb, two words) using a "logout link" or "logout form" (adjective, one word).
1515

1616

1717
## Logout Link
@@ -24,14 +24,14 @@ resolves to something like
2424

2525
https://example.com/?ACT=10&csrf_token=3f9045ab558a35b7caf6a8130439758d02b343df
2626

27-
Usually, you place the path variable inside of a link tag.
27+
Usually, you place the path variable inside of a link tag.
2828

2929
<a href="{path='logout'}">Log Out</a>
3030

3131
NOTE: The logout path link will generate with a fresh CSRF token every time it is called, even for visitors who are currently logged out. For maximum site efficiency, you should avoid creating logout links for visitors who are not logged in.
3232

3333
{if logged_in}<a href="{path='logout'}">Log Out</a>{/if}
34-
34+
3535
NOTE: Logging out of the front end of the site deletes the session cookie, so it will also potentially log someone out of the admin panel if your site uses cookies to be logged in to the control panel.
3636

3737
## Logout Form Overview

0 commit comments

Comments
 (0)