Wrong form field content / multiple forms with same name causes problems

Hi everyone.

im getting the wrong fields returned…
i have 3 different forms on 3 different pages on a static website hosted by netlify

two of them have email and name input fields

the other has a name and tel input fields

but all form submission come through with just name and tel now, no matter what form i use.
anyone got any ideas?

form looks like this

<form name="get-started" action="/pages/success" method="POST" style="margin-top: 64px;"><input type="hidden" name="form-name" value="get-started">
      <p>
        <label>Your Name
          <input type="text" name="name" required="">
          <span class="form-error" id="form__name-error">
            Hey, you had better fill your name out, it's required.
          </span>
        </label>
      </p>
      <p>
        <label>Your Email
          <input type="email" name="email" required="">
          <span class="form-error" id="form__name-error">
            Hmmm that doesn't look like an email
          </span>
        </label>
      </p>
      <p>
        <button type="submit" class="button large expanded" style="margin-top: 32px;">Get Started</button>
      </p>
    </form>

If you deploy more than one form with the same name (even if you don’t link to more than one!), behavior will look a bit like this. Is that possible in your situation?