Once a user is authenticated, they can log out at <your-domain>/logout
. You can provide a logout button on your authenticated pages with this link.
index.html
copied
Detecting if a user is logged in#
CloudCannon sets a cookie when the user is authenticated. Use this to show the logout button for authenticated users on public pages, and hide it otherwise.
No sensitive authentication data is exposed through cookies.
The cookie is used to set a class on the body. The CSS will show the logout button with this class.
script.js
copied
styles.css
copied
index.html
copied