Is it possible to create a password protected page with multiple passwords?

I’m trying to create an eCommerce shop behind a password-required section. I want the passwords to be from a list of approved passwords that we create and give out as a code to enter the shop.

I don’t need full account info just a section that says “Use Code to Enter” with one field.

Does anyone know if webflow has that type of password option or if theirs a 3rd party that I can use to figure this out?

Have you figures this out yet?

This is different from your original memberships question, in that it is password-only. If you wanted to be able to simply issue passwords per-customer as an access deterrent, you could build the feature using Javascript. I’d use cookies or sessionStorage to store the access token, and automation ( Make.com ) and a table of passwords ( AirTable, Google Sheets ) for the password management & authentication.

Make sure on your “password secured pages” that you check for the cookie/token, and redirect them to the login page if it does not exist. This deters direct access to the page from a Google search or shared link.

Importantly, none of this would be secure, and it would all fall over if the user had Javascript disabled. However for a simple marketing feature, it should be suitable for your goals.