For some reason this contact form / forms plugin works perfectly in every browser EXCEPT IE on Windows 7. Any ideas what could be the issue? The form is currently live on http://civilvic.com.au/contact and also here’s the yaml for it…
form:
name: contact
fields:
-
name: name
label: Name
placeholder: 'Enter your name'
autofocus: 'on'
autocomplete: 'on'
type: text
validate:
required: true
-
name: email
label: Email
placeholder: 'Enter your email address'
type: email
validate:
required: true
-
name: message
label: Message
placeholder: 'Enter your message'
type: textarea
rows: 6
validate:
required: true
buttons:
-
type: submit
value: Send
process:
-
email:
from: '{{ form.value.email }}'
subject: 'Civilvic Website Inquiry | {{ form.value.name|e }}'
body: '{% include ''forms/data.html.twig'' %}'
-
message: 'Thank you for getting in touch!'
-
display: thankyou
When I say ‘not working’ there’s an error that shows up saying “Oops there was a problem, please check your input and submit the form again.”