tag section to clear authentication session storage and redirect users to the login page.
To create a log-out button in Webflow for a members-only page, you need to use Webflow’s Memberships or third-party authentication services. Since Webflow doesn’t provide a built-in log-out button yet, you'll need to use JavaScript to clear the session and redirect the user to the login page.
"logout-btn"
(or any identifier of your choice).Open the Page Settings of the page where the logout button appears.
Scroll to the Before tag section and insert the following code:
```javascript
document.addEventListener("DOMContentLoaded", function() {
const logoutButton = document.getElementById("logout-btn");
if (logoutButton) {
logoutButton.addEventListener("click", function() {
// Clear authentication session (adjust based on your authentication provider)
localStorage.removeItem("wf-auth");
sessionStorage.removeItem("wf-auth");
// Redirect to the login page window.location.href = "/login"; // Update with your actual login page URL });}
});
```
To add a logout button in Webflow, create a button with an ID, then use JavaScript to clear the session and redirect users to the login page. Ensure the login page is publicly accessible, and configure session settings if using a third-party authentication service.