Capture email AND change page on button push

Hi!

On my landing page I would like to push an email subscriber further down my sales funnel. I have the newsletter section which collects the email address and adds it to a customer list. However I would want that button to also point to a different page. I tried editing the code by adding To the following section of newsletter.liquid but I do not know HTML at all. Any suggestions about how to do it this way correctly or a more efficient way would be appreciated.:

{% form 'customer' %}

{{ section.settings.heading | escape }}

{% unless section.settings.subheading == blank %}
{{ section.settings.subheading }}
{% endunless %}
{{ 'general.newsletter_form.submit' | t }} {% include 'icon-arrow-right' %}
{% if form.posted_successfully? %}

{% unless section.settings.success_message == blank %} {{ section.settings.success_message | escape }}

{% endunless %}

{% endif %} {{ form.errors | default_errors }}
{% endform %}

This was solved by @g33kgirl here https://community.shopify.com/c/Shopify-Design/Progress-to-new-page-after-successful-subscription/m-p/1166474#M299271