the problem is that you have spaces in your form element names. For example:
<input type="text" id="Address 1" name="Address 1" autocomplete="off">
Form elements names may not contain spaces. The following rules should be followed when naming form elements:
1) Only Alpha numeric character can be used, the only exception is the underscore "_"
2) The first character must be a letter.