hform/forms

Gym membership form template

A membership-inquiry form for gyms, studios and clubs — which membership, when they want to start, and what they’re hoping to achieve. The goals field isn’t decoration: it’s the opening line of your welcome call.

The form

Use this template — free → Copied ✓

Opens the builder with this exact form loaded — press Finish there and your form gets its own address and page, with messages emailed to you.

Prefer the raw HTML?

⚠ As-is, this code has a placeholder address — messages sent through it go nowhere. Use the button above to get a working address (free), or point the form's action at your own server.

<style>
  .hf-form { display: grid; gap: 0.75rem; max-width: 28rem; font-family: system-ui, sans-serif; }
  .hf-form label { font-weight: 600; font-size: 0.9rem; }
  .hf-form input, .hf-form textarea, .hf-form select {
    width: 100%; padding: 0.5rem 0.6rem; font: inherit;
    border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box;
  }
  .hf-form button {
    justify-self: start; padding: 0.55rem 1.4rem; font: inherit; font-weight: 600;
    background: #0b6e4f; color: #fff; border: none; border-radius: 6px; cursor: pointer;
  }
  .hf-hp { position: absolute; left: -9999px; }
</style>

<form class="hf-form" action="https://example.com/your-endpoint" method="POST">
  <label for="name">Name</label>
  <input type="text" id="name" name="name" required>
  <label for="email">Email</label>
  <input type="email" id="email" name="email" required>
  <label for="phone">Phone</label>
  <input type="tel" id="phone" name="phone">
  <label for="i-m-interested-in">I’m interested in</label>
  <select id="i-m-interested-in" name="i-m-interested-in" required>
    <option>Monthly membership</option>
    <option>Annual membership</option>
    <option>Class pass</option>
    <option>Free trial session</option>
  </select>
  <label for="when-would-you-like-to-start">When would you like to start?</label>
  <select id="when-would-you-like-to-start" name="when-would-you-like-to-start">
    <option>This week</option>
    <option>This month</option>
    <option>Just looking around</option>
  </select>
  <label for="what-are-your-training-goals">What are your training goals?</label>
  <textarea id="what-are-your-training-goals" name="what-are-your-training-goals" rows="5"></textarea>
  <!-- honeypot: humans never see this; bots fill it in. Drop submissions where it has a value. -->
  <input class="hf-hp" type="text" name="website" tabindex="-1" autocomplete="off" aria-hidden="true">
  <button type="submit">Get started</button>
</form>

Adding it to your site? Step-by-step guides: WordPress, Shopify, Wix, Squarespace, Webflow or a static site.

Fields in this template

Tips for a gym membership form that works

Questions

Should the form take payment for memberships?

No — a plain form must never collect card details. Capture the interest here, then handle signup and payment at the front desk or through a proper payment link in your reply.

Why not ask about injuries or health conditions?

Health information carries stricter data rules (special-category under GDPR) and doesn’t belong in a website form. Do the health screening on paper or a proper system at the first visit instead.

From the same maker

Need more than a form?

Tentmaker Stores gives you a complete online store — product pages, checkout and everything in between. Built for small makers and niche sellers.