Not signed in (Sign In)

Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    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?

    Thank you,
    Bill
    • CommentAuthordbuschho
    • CommentTimeAug 8th 2011
     
    Hello Bill,

    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.

    Happy to help,
    Drew
    FormAssembly.com Support
  2.  
    Great... thank you!