Currently I have a CMS page with videos in it. I’m planning to protect the page by setting a password for it and the only way to access that page is through filling up a form and receive the password through the email sent to them. However I wish to do it in a way where by the password will be unique each time the user signs up. Is there anyway i can go about doing that?
Webflow does not support what you are looking to do. So different hosting and custom code or automation integrations are the way to get it done. If you have a budget feel free to reach out to me for a discussion.
As @webdev said, there is no built-in support for this, however you can build your own “front end” gate that verifies a different password, and the logs in the user using your pre-configured password.
You’d use this design pattern-
And on top of it, you’d need to add a way to validate your uniquely-issued passwords.
Most likely, you’d do that using an automation like Make.com against an Airtable base.Then you’d have two automations-
On user registration, an automation that puts that user’s email into an Airtable base and creates a random password.
On user login, an automation that takes the user-supplied email and password, and verifies that it exists in the Airtable. If it does, it allows the user access by having the script complete the hidden login form to access the requested page.
It’s important to understand that this is adequate for most marketing uses, it is NOT properly secure and CAN be hacked if someone knowledgeable enough wants to unpack your page code. Do NOT pretend it’s a security mechanism. It’s just a deterrent to collect leads.
“When generated according to the standard methods, UUIDs are, for practical purposes, unique. Their uniqueness does not depend on a central registration authority or coordination between the parties generating them, unlike most other numbering schemes. While the probability that a UUID will be duplicated is not zero, it is generally considered close enough to zero to be negligible.”
And if you submit your native Webflow form into a free Make (Integromat) account, they’ll create one for you.
Create or update CMS item and pop off an email with that link (including your fancy new UUID slug).
Drink 's and collect emails (you’re allowed to skip this step, but as someone who’s not a doctor, I don’t advise it).
Bonus:
If the user forgets the link, didn’t bookmark it, can’t find it within their inbox, have another automation that takes their email and resends the link
Hi ChrisDrit, thanks a lot for the help will proceed with your advice. Just one more question as of now after submitting the form the user will be redirected to a “CMS video page with the relevant video” with your given solution would i be able to do that as well?
(Steps)
User enter details in the form (CMS Page) > Redirected to relevant video Page (CMS Page) with unique URL that only the user can access.
Shouldn’t be an issue. Make (Integromat) can either add whatever video you want to the CMS or any (multi)reference to a video you’d like for those uniquely slugged items.