In addition to the basic forms you can build using the AXIS Form Builder, you can also make complex custom forms which take advantage of the AXIS system. This way you go crazy with layout options, styling, validation and just about anything else. You will still be able to use the Form area to manage form properties and retrieve stored submissions.
Steps to creating or modifying a custom form:
- Create your form in AXIS > Forms
- Create a text area in the form builder. We are using text areas to store all values in custom forms.
- Give the field a unique name such as my_new_field_33
- Create your custom form by writing the HTML yourself or using software such as Dreamweaver.
- Make sure each field name and ID match what you created in the Form Builder
e.g. employer_prev3_fullyear" type="text" id=" my_new_field_33" - Place this code at the end of your form, right before be sure to replace the value with your Form ID. You can find this in the URL of your form in the admin side.
input id="formid" type="hidden" name="formid" value="2" /> - Create a new HTML Code Block in AXIS and paste your form code into it.