From b169812ce65d66c90b29cb3d7abab65400269384 Mon Sep 17 00:00:00 2001 From: Tom Jaeger Date: Tue, 1 Jul 2025 13:53:30 -0400 Subject: [PATCH] updated style note to note --- docs/member/logout.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/member/logout.md b/docs/member/logout.md index e02d8630..c3fef47d 100644 --- a/docs/member/logout.md +++ b/docs/member/logout.md @@ -11,7 +11,7 @@ [TOC] -STYLE NOTE: Someone "logs out" (verb, two words) using a "logout link" or "logout form" (adjective, one word). +NOTE: Someone "logs out" (verb, two words) using a "logout link" or "logout form" (adjective, one word). ## Logout Link @@ -24,14 +24,14 @@ resolves to something like https://example.com/?ACT=10&csrf_token=3f9045ab558a35b7caf6a8130439758d02b343df -Usually, you place the path variable inside of a link tag. +Usually, you place the path variable inside of a link tag. Log Out 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. {if logged_in}Log Out{/if} - + 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. ## Logout Form Overview