splitforms.com
FITNESS · CONTACT FORM TEMPLATE

Yoga & Pilates Studio Inquiry Form

Yoga and pilates studios convert on the intro offer — three classes for $30, two weeks for $49. The form captures the lead, the studio sends the offer link.

1,000/mo free·no card·works on any host
form.htmlhtml44 lines
01<form action="https://splitforms.com/api/submit" method="POST">
02 <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
03 <input type="hidden" name="subject" value="New class signup">
04
05 <label for="name">Full name *</label>
06 <input id="name" type="text" name="name" placeholder="Anna Lopez" required>
07 <label for="email">Email *</label>
08 <input id="email" type="email" name="email" placeholder="anna@example.com" required>
09 <label for="phone">Phone</label>
10 <input id="phone" type="tel" name="phone" placeholder="+1 555 0142">
11 <label for="class">Class *</label>
12 <select id="class" name="class" required>
13 <option value="">Choose…</option>
14 <option>Beginner yoga</option>
15 <option>Vinyasa flow</option>
16 <option>Yin / restorative</option>
17 <option>Hot yoga</option>
18 <option>Mat pilates</option>
19 <option>Reformer pilates</option>
20 <option>Prenatal</option>
21 <option>Drop-in (any level)</option>
22 </select>
23 <label for="experience">Experience level *</label>
24 <select id="experience" name="experience" required>
25 <option value="">Choose…</option>
26 <option>Brand new</option>
27 <option>Beginner</option>
28 <option>Intermediate</option>
29 <option>Advanced</option>
30 </select>
31 <label for="preferred_date">Preferred date *</label>
32 <input id="preferred_date" type="date" name="preferred_date" required>
33 <label for="notes">Anything we should know?</label>
34 <textarea id="notes" name="notes" placeholder="Injuries, pregnancy, focus areas."></textarea>
35
36 <!-- honeypot — bots fill every field -->
37 <input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">
38
39 <button type="submit">Send</button>
40</form>
41
42<p style="margin-top:12px;font-size:11px;color:#888;text-align:right">
43 Powered by <a href="https://splitforms.com" style="color:#888;text-decoration:none" target="_blank" rel="noopener">splitforms</a>
44</p>
1,000
submissions / mo, free
7
fields, ready to ship
5
code outputs
60s
from copy to inbox
Yoga & Pilates Studio Inquiry Form — example splitforms template with submissions inbox
§ 01Why it mattersthe qualifying-fields argument

Yoga studios live on the intro-offer-to-membership funnel. A new student tries three classes for $30, falls in love, signs up for the unlimited monthly. The form's job is the on-ramp — capture name, email, level, and what kind of yoga they're after, then auto-respond with the intro-offer purchase link. Teacher training and private sessions are separate (longer sales cycle, higher ticket) but the same form with a 'I'm interested in...' branch handles both.

✦ at a glance
  • Yoga / pilates class signup · 7 fields
  • HTML, JS, React, PHP, cURL outputs
  • One POST endpoint, no SDK
  • Honeypot + classifier, no CAPTCHA
§ 02Live previewinteractive · sandboxed · no key required

See exactly what your visitors see — and you’ll receive.

Left: the rendered form, fully interactive in a sandboxed iframe. Right: the email and dashboard view that lands the moment a visitor submits.

preview · yoga-studio-contact-formlocalhost:3000
✦ what you’ll see in your inbox

Every submission becomes an email plus a dashboard row. The fields below are the exact payload your form will send. Reply-to is wired to the visitor’s email so hitting reply goes back to them.

dashboard · new submission14ms · 200 OK
SUBJECT · New class signup
Full name
Maya Iyer
Email
maya@studio71.co
Phone
+1 415 555 0142
Class
Beginner yoga
Experience level
Brand new
Preferred date
2026-05-15
Anything we should know?
Loved your last open house in Hayes — looking for similar with parking. Pre-approved through Wells Fargo.

Iframe is sandboxed — submit doesn’t actually fire. Get your access key to wire it up live.

§ 03Three steps3 steps · ~60 seconds

Generate, embed, receive.

Three actions stand between you and your first lead. None of them require a backend, a database, or a CAPTCHA library.

STEP 01GENERATE

Capture experience and interest

Required: experience level (never tried / some / regular practice), interest (vinyasa / hatha / hot / restorative / pilates / barre).

Create your form
key=sk_live_••••••••
STEP 02EMBED

Auto-send the intro offer

Webhook to your email tool (Mailchimp / ConvertKit) — the lead gets the intro-offer purchase link within minutes. The studio's revenue funnel kicks in automatically.

snippethtml
<form action="https://splitforms.com/api/submit" method="POST">
  …
</form>
STEP 03RECEIVE

Branch teacher training leads

Optional 'I'm interested in teacher training' checkbox. TT is a 10x ticket and a separate sales cycle — webhook routes those to the lead studio teacher for a personal call.

inbox · 1 newjust now
FROM contact@yoursite.com
New class signup
Maya Iyer maya@studio71.co
Loved your last open house in Hayes — looking for similar with parking. Pre-approved through Wells Fargo.
§ 04Copy & ship5 languages · same endpoint

Five outputs. One backend.

HTML by default. Click open the language you ship in — every variant POSTs to the same /api/submit endpoint.

01HTMLform.html44 lines
<form action="https://splitforms.com/api/submit" method="POST">
  <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
  <input type="hidden" name="subject" value="New class signup">

  <label for="name">Full name *</label>
  <input id="name" type="text" name="name" placeholder="Anna Lopez" required>
  <label for="email">Email *</label>
  <input id="email" type="email" name="email" placeholder="anna@example.com" required>
  <label for="phone">Phone</label>
  <input id="phone" type="tel" name="phone" placeholder="+1 555 0142">
  <label for="class">Class *</label>
  <select id="class" name="class" required>
    <option value="">Choose…</option>
    <option>Beginner yoga</option>
    <option>Vinyasa flow</option>
    <option>Yin / restorative</option>
    <option>Hot yoga</option>
    <option>Mat pilates</option>
    <option>Reformer pilates</option>
    <option>Prenatal</option>
    <option>Drop-in (any level)</option>
  </select>
  <label for="experience">Experience level *</label>
  <select id="experience" name="experience" required>
    <option value="">Choose…</option>
    <option>Brand new</option>
    <option>Beginner</option>
    <option>Intermediate</option>
    <option>Advanced</option>
  </select>
  <label for="preferred_date">Preferred date *</label>
  <input id="preferred_date" type="date" name="preferred_date" required>
  <label for="notes">Anything we should know?</label>
  <textarea id="notes" name="notes" placeholder="Injuries, pregnancy, focus areas."></textarea>

  <!-- honeypot — bots fill every field -->
  <input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">

  <button type="submit">Send</button>
</form>

<p style="margin-top:12px;font-size:11px;color:#888;text-align:right">
  Powered by <a href="https://splitforms.com" style="color:#888;text-decoration:none" target="_blank" rel="noopener">splitforms</a>
</p>
02JavaScriptform.js60 lines
<form id="lf-form">
  <label for="name">Full name *</label>
  <input id="name" type="text" name="name" placeholder="Anna Lopez" required>
  <label for="email">Email *</label>
  <input id="email" type="email" name="email" placeholder="anna@example.com" required>
  <label for="phone">Phone</label>
  <input id="phone" type="tel" name="phone" placeholder="+1 555 0142">
  <label for="class">Class *</label>
  <select id="class" name="class" required>
    <option value="">Choose…</option>
    <option>Beginner yoga</option>
    <option>Vinyasa flow</option>
    <option>Yin / restorative</option>
    <option>Hot yoga</option>
    <option>Mat pilates</option>
    <option>Reformer pilates</option>
    <option>Prenatal</option>
    <option>Drop-in (any level)</option>
  </select>
  <label for="experience">Experience level *</label>
  <select id="experience" name="experience" required>
    <option value="">Choose…</option>
    <option>Brand new</option>
    <option>Beginner</option>
    <option>Intermediate</option>
    <option>Advanced</option>
  </select>
  <label for="preferred_date">Preferred date *</label>
  <input id="preferred_date" type="date" name="preferred_date" required>
  <label for="notes">Anything we should know?</label>
  <textarea id="notes" name="notes" placeholder="Injuries, pregnancy, focus areas."></textarea>
  <button type="submit">Send</button>
</form>

<p style="margin-top:12px;font-size:11px;color:#888;text-align:right">
  Powered by <a href="https://splitforms.com" style="color:#888;text-decoration:none" target="_blank" rel="noopener">splitforms</a>
</p>

<script>
  document.getElementById('lf-form').addEventListener('submit', async (e) => {
    e.preventDefault();
    const data = new FormData(e.target);
    data.set('access_key', 'YOUR_ACCESS_KEY');
    data.set('subject', 'New class signup');

    const res = await fetch('https://splitforms.com/api/submit', {
      method: 'POST',
      body: data,
      headers: { Accept: 'application/json' },
    });

    const json = await res.json();
    if (json.success) {
      e.target.reset();
      alert('Sent!');
    } else {
      alert('Error: ' + (json.message || 'Try again'));
    }
  });
</script>
03React / Next.jsForm.tsx75 lines
'use client';

import { useState, type FormEvent } from 'react';

export default function YogaClassSignupForm() {
  const [status, setStatus] = useState<'idle' | 'sending' | 'sent' | 'error'>('idle');

  async function onSubmit(e: FormEvent<HTMLFormElement>) {
    e.preventDefault();
    setStatus('sending');

    const data = new FormData(e.currentTarget);
    data.set('access_key', 'YOUR_ACCESS_KEY');
    data.set('subject', 'New class signup');

    const res = await fetch('https://splitforms.com/api/submit', {
      method: 'POST',
      body: data,
      headers: { Accept: 'application/json' },
    });

    const json = await res.json();
    setStatus(json.success ? 'sent' : 'error');
    if (json.success) e.currentTarget.reset();
  }

  if (status === 'sent') return <p>Thanks — we&rsquo;ll be in touch.</p>;

  return (
    <>
    <form onSubmit={onSubmit}>
      <label htmlFor="name">Full name *</label>
      <input id="name" type="text" name="name" placeholder="Anna Lopez" required />
      <label htmlFor="email">Email *</label>
      <input id="email" type="email" name="email" placeholder="anna@example.com" required />
      <label htmlFor="phone">Phone</label>
      <input id="phone" type="tel" name="phone" placeholder="+1 555 0142" />
      <label htmlFor="class">Class *</label>
      <select id="class" name="class" required>
        <option value="">Choose…</option>
        <option>Beginner yoga</option>
        <option>Vinyasa flow</option>
        <option>Yin / restorative</option>
        <option>Hot yoga</option>
        <option>Mat pilates</option>
        <option>Reformer pilates</option>
        <option>Prenatal</option>
        <option>Drop-in (any level)</option>
      </select>
      <label htmlFor="experience">Experience level *</label>
      <select id="experience" name="experience" required>
        <option value="">Choose…</option>
        <option>Brand new</option>
        <option>Beginner</option>
        <option>Intermediate</option>
        <option>Advanced</option>
      </select>
      <label htmlFor="preferred_date">Preferred date *</label>
      <input id="preferred_date" type="date" name="preferred_date" required />
      <label htmlFor="notes">Anything we should know?</label>
      <textarea id="notes" name="notes" placeholder="Injuries, pregnancy, focus areas." />

      <button type="submit" disabled={status === 'sending'}>
        {status === 'sending' ? 'Sending…' : 'Send'}
      </button>

      {status === 'error' && <p>Something went wrong. Try again.</p>}
    </form>

      <p style={{ marginTop: 12, fontSize: 11, color: '#888', textAlign: 'right' }}>
        Powered by <a href="https://splitforms.com" target="_blank" rel="noopener" style={{ color: '#888', textDecoration: 'none' }}>splitforms</a>
      </p>
    </>
  );
}
04PHPsubmit.php28 lines
<?php
// Drop into a PHP page. Receives a form POST and proxies it to splitforms.com.
// Useful when you want to add server-side validation or rate limiting.

if ($_SERVER['REQUEST_METHOD'] === 'POST') {
    $allowed = ['name', 'email', 'phone', 'class', 'experience', 'preferred_date', 'notes'];
    $payload = ['access_key' => 'YOUR_ACCESS_KEY'];
    $payload['subject'] = 'New class signup';

    foreach ($allowed as $f) {
        if (isset($_POST[$f])) $payload[$f] = $_POST[$f];
    }

    $ch = curl_init('https://splitforms.com/api/submit');
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($payload));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, ['Accept: application/json']);
    $response = curl_exec($ch);
    $status   = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    header('Content-Type: application/json');
    http_response_code($status);
    echo $response;
    exit;
}
?>
05cURLtest.sh11 lines
curl -X POST https://splitforms.com/api/submit \
  -H "Accept: application/json" \
  -d "access_key=YOUR_ACCESS_KEY" \
  -d "subject=New class signup" \
  -d "name=Jane Builder" \
  -d "email=jane@example.com" \
  -d "phone=+15555555555" \
  -d "class=Beginner yoga" \
  -d "experience=Brand new" \
  -d "preferred_date=2026-05-15" \
  -d "notes=Hello from cURL" 

Replace YOUR_ACCESS_KEY with the key from your dashboard. That’s the only edit.

§ 06FAQ4 answered

Things people ask before they ship.

Direct answers, no marketing fluff. Missing one? Email hello@splitforms.com.

01Should the form sell the intro pack directly?
Capture first, sell second. Most yoga studios use Mindbody / WellnessLiving for the actual sale — the form just hands the lead to the email auto-responder, which links to the studio's booking software. Cleaner than embedding payments on a contact form.
02Can I integrate with Mindbody or WellnessLiving?
Yes — webhook the JSON. Both have inbound APIs via Zapier. Lead lands in your studio software ready for the intro offer.
03What about private sessions?
Add a 'private session' branch with date and goal fields. Privates are 5-10x the rate of group classes; the lead-quality filter on this funnel matters more than volume.
04Do students really fill out forms vs just walking in?
Pre-COVID, walk-in was huge. Post-2024, every studio runs intro-offer funnels online and most new students arrive via the form. The funnel is the standard now.
✻ ✻ ✻

Ship your yoga & pilates studio inquiry form in 60 seconds.

1,000 free submissions per month. No credit card. Copy the snippet, paste your access key, watch leads land in your inbox.

Get free access key →Browse all 60 templates →
v0.1 · founders pricing locked in · early access open