The structure:
homepage.md has 2 forms as
forms:
contact-form:
fields:
subscribe-form:
fields:
when you enter page B.md in b.html.twig it has
{% include 'partials/contact_form.html.twig' with { formName : 'contact-form' } %}
the "partials/contact_form.html.twig" has
{% include "forms/form.html.twig" with { form: forms(formName) } %}
So the form is nicely found in home.md (somehow) and the form is rendered as expected.
Problem: when i try to submit something, he page reloads and nothing is sent, file data.txt is not created as well.
Any help is very appreciated!