Hi There,
I am very new to the world of coding and website. I want to have a page on my site where customers can request samples. I built the below and when submitting the form I only receive ‘name, email and number’ to my email address not the whole form. See below a screenshot of the form and code. Please help
{{ page.title }}
{% if page.content.size > 0 %}
{{ page.content }}
{% endif %}
{%- assign formId = 'ContactForm' -%}
{% form 'contact', id: formId %}
{% include 'form-status', form: form, form_id: formId %}
{{ 'contact.form.name' | t }}
{{ 'contact.form.email' | t }} *
{%- if form.errors contains 'email' -%}
{{ 'general.accessibility.error' | t }}
{% include 'icon-error' %}
{{ form.errors.translated_fields['email'] | capitalize }} {{ form.errors.messages['email'] }}.
{%- endif -%}
{{ ‘contact.form.phone’ | t }}
Company Name
<input type=“text”
Street Address
<input type=“text”
City/Town
<input type=“text”
Postcode
<input type=“text”
{% endform %}