I have this form and I want my form responder to respond to it only if the time is between 2 pm to 7 am. So I put the fields in a panel and used this JavaScript to conditionally show the panel.
const currentTime = moment(); const startTime = moment().set({hour: 13, minute: 0}); const endTime = moment().set({hour: 6, minute: 0}); show = currentTime.isBetween(startTime, endTime);
It's currently 2:31 PM here but the panel is still not showing.
I have a text field that I'm actually using as a field where respondents input their email. I want to put a validation that checks if the inputted text ends with our company domain. How can this be achieved?
I want to set a deadline for my Team Forms, similar to the feature in Microsoft Forms, where users are unable to respond to the form after the specified deadline.