After a custom form is created, you might need to use forms in your pages to capture user input from your customers. StoreHippo allows you to use theme widgets including forms widgets in pages. You can add forms to a static page in three easy steps:
When you have created a form and page on which you want to display the form, you are required to add the form widget to the page. To do so, follow the
<div class="row justify-content-center mt-4"> <div class="col-md-8 col-lg-6"> <ms-forms formname="enquiry" @success="ms.reload();"> <div class="form" v-if="!loading"> <w-form-layout :form="form"></w-form-layout> </div> </ms-forms> </div></div>
<div ms-widget="ms.forms" ms-data-formname="enquiry" ms-data-buttonname="Submit">
<form name="enquiry" ng-submit="submit()">
<div ms-widget="ms.th3.form_layout1"></div>
</form>
</div>