Action attribute in form is ignored

sitename: braxtondawn
dev-environment: https://dev--braxrondawn.netlify.app/

  <form class="ebook-form" id="ebook-form" name="ebook" method="POST" data-netlify="true" netlify-honeypot="bot-field">
    <div hidden aria-hidden="true" action="/ebooks/7-simple-steps-to-optimise-your-website-for-business-growth.pdf">
      <label>
        Don’t fill this out if you're human:
        <input name="bot-field" />
      </label>
    </div>
    <div class="form-group">
      <label for="form-full-name">Name</label>
      <input type="text" name="full-name" class="form-control" id="form-full-name" placeholder="Your name"
        required />
    </div>
    <div class="form-group">
      <label for="form-email">Email address</label>
      <input type="email" name="email" class="form-control" id="form-email" aria-describedby="emailHelp"
        placeholder="Your e-mail" required />
    </div>
    <button type="submit" class="cta-button">Download free ebook ➜</button>
  </form>

Please help

The action attribute goes on the form tag and not on a div inside it.

1 Like

Confirmed, I realised after posting this lol.