Checkbox blocking form submission

Hi.

I have installed this form in a testing server:

http://www.html-form-guide.com/contact-form/contact-form-attachment.html

I have included the usual privacy acceptance checkbox like this:

      <label for="privacy" class="rojo">Please accept privacy policy (<a href="privacy" rel="nofollow">see</a>)</label>
      <input type="checkbox" name="privacy" id="privacy" value="<?php echo $formproc->SafeDisplay("privacy") ?>" />
      <span id="contactus_privacidad_errorloc" class="error"></span>

Then I test the form and the result is always that the privacy checkbox is not checked.

Obviously, I have already included the following line in the javascript file:

frmvalidator.addValidation("privacy","req","Please accept privacy policy");    

The issue is that if I change the input type from type=“checkbox” to type=“text”, and I insert any text, as for instance a single letter, the form works.

There is also a folder (include) with a series of php files. And specifically this one: fgcontactform.php, which seems to be responsible for the functioning of the form in some parts.

I have spent (wasted) two hours trying to figure out what to include or modify in the javascript and php files to have the form working with the privacy checkout required with no success at all.

Can you help me or tell me something about it?

By the way, the form includes a ReadMe.txt file that says literally:

Thanks very much for any comment.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.