Hello,
I’ve put a date picker, and a button allowing user to continue to sign up (go to the next page). But I would like this button to appear only if the date in the date picker is only 18+ years. Do you think it’s possible ?
Hello,
I’ve put a date picker, and a button allowing user to continue to sign up (go to the next page). But I would like this button to appear only if the date in the date picker is only 18+ years. Do you think it’s possible ?
You mean the user is of age 18+?
Hi, could you do it like this? A date picker and add a hidden input in number. There you create a mathematical function that is today’s date minus the date picker date…
In the button you put two conditions. If the input is equal to or greater than 18, continue, and the other condition is if the input is less than 18, it says you are a minor or whatever message you want.
Hi, I added two actions on the button, one update the user “Age” property by using the formula : INT((Start of Today-Birth date)÷365) so it calculates your age. The other action link to the next page if the “Age” property if equal of greater than 18 ! I also added a text that prevent user that It’s not allowed under 18 if Age property is under 18 ! It works !