In Webflow, if the author of a protected page changes the password, will the browser still show the page based on the old cookie or will it ask for a new password? Additionally, what are some ways to ensure that each view of a protected page in Webflow requires the password?

Published on
September 22, 2023

In Webflow, if the author of a protected page changes the password, the browser will still show the page based on the old cookie until the user logs out or clears their browser cookies. This is because the browser holds on to the authentication cookie and continues to use it until it is no longer valid or the user manually clears their cookies.

To ensure that each view of a protected page in Webflow requires the password, there are a few approaches you can take:

  1. Use expiring cookies: Set a shorter expiration time for the authentication cookie so that it expires after a certain period of time. This will require the user to enter the password again when the cookie expires.

  2. Implement session timeouts: Set a timeout for the user's session after a certain period of inactivity. This means that if the user is inactive for a specified amount of time, they will be logged out and asked to enter the password again when they try to access the protected page.

  3. Use HTTP authentication: Instead of relying solely on cookies, you can implement HTTP authentication for your protected pages. This requires the user to enter their username and password in a dialog box provided by the browser. With this method, the browser will always ask for the password for each view of the protected page.

By combining one or more of these approaches, you can ensure that each view of a protected page in Webflow requires the password, providing an extra layer of security for sensitive content.

Additional Questions:

  1. How can I add password protection to a specific page in Webflow?
  2. Can I customize the login form for password-protected pages in Webflow?
  3. Is it possible to create different levels of access for password-protected pages in Webflow?