I'm wondering if there is a way to make the first question on a multi-page form act like a password to continue. I'm not concerned about security all that much, it would serve more as a deterrent. Is there any way you can say a field must equal "ABC123" before continuing?
Some people have done a little ( and totally insecure ) hack by doing the following:
1. Create a first page. 2. Add a single text field to that page and select 'custom validation'. 3. In the regular expression field, they put: ^ABC123$ which says, 'only pass validation if the field value is ABC123 exactly.' (^$ are the 'begin-line','end-line' symbols )
Note that to defeat this check your users would have to go to the difficult step of: 1. Viewing the page source or 2. Turning off javascript in their browser.