splitforms.com
HOME SERVICES · CONTACT FORM TEMPLATE

Locksmith Emergency Callout Form

Nobody fills out a contact form when they're locked out of their car at midnight — they call. The form is for the next-day rekey, the smart-lock install, and the after-hours overflow that voicemail eats.

1,000/mo free·no card·works on any host
form.htmlhtml41 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 locksmith request">
04
05 <label for="name">Full name *</label>
06 <input id="name" type="text" name="name" placeholder="Anna Lopez" required>
07 <label for="phone">Phone *</label>
08 <input id="phone" type="tel" name="phone" placeholder="+1 555 0142" required>
09 <label for="address">Address *</label>
10 <input id="address" type="text" name="address" placeholder="1247 Valencia St" required>
11 <label for="service">Service needed *</label>
12 <select id="service" name="service" required>
13 <option value="">Choose…</option>
14 <option>Locked out — house</option>
15 <option>Locked out — car</option>
16 <option>Locked out — office</option>
17 <option>Rekey existing locks</option>
18 <option>New lock install</option>
19 <option>Smart-lock install</option>
20 <option>Safe opening</option>
21 </select>
22 <label for="urgency">How urgent? *</label>
23 <select id="urgency" name="urgency" required>
24 <option value="">Choose…</option>
25 <option>Emergency — locked out now</option>
26 <option>Within an hour</option>
27 <option>Today</option>
28 <option>This week</option>
29 </select>
30 <label for="details">Notes</label>
31 <textarea id="details" name="details" placeholder="Type of lock, vehicle make/model, anything we should bring."></textarea>
32
33 <!-- honeypot — bots fill every field -->
34 <input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">
35
36 <button type="submit">Send</button>
37</form>
38
39<p style="margin-top:12px;font-size:11px;color:#888;text-align:right">
40 Powered by <a href="https://splitforms.com" style="color:#888;text-decoration:none" target="_blank" rel="noopener">splitforms</a>
41</p>
1,000
submissions / mo, free
6
fields, ready to ship
5
code outputs
60s
from copy to inbox
Locksmith Emergency Callout Form — example splitforms template with submissions inbox
§ 01Why it mattersthe qualifying-fields argument

Locksmith calls split into emergency lockouts (call now, $75-150 callout fee, customer doesn't shop) and scheduled work (rekey, smart-lock install, master-key system, car key programming — quoted on the call). Form-based leads almost always belong to the second bucket. The form needs service type, address, and urgency. Critically — speed-to-call still matters: a homeowner who fills out a smart-lock install form at 8 PM has decided tonight, and the shop that calls back at 7 AM beats the one that calls back at 11 AM. Webhook the lead to the on-call tech's phone immediately.

Speed-to-call wins this trade — Twilio SMS to on-call tech within seconds.
✦ at a glance
  • Locksmith callout · 6 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 · locksmith-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 locksmith request
Full name
Maya Iyer
Phone
+1 415 555 0142
Address
Service needed
Locked out — house
How urgent?
Emergency — locked out now
Notes
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 service type and urgency

Required: service (lockout / rekey / smart-lock install / car key / master key / safe), address, urgency (emergency / today / this week / quote only).

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

SMS the on-call tech

Webhook to Twilio — the on-call tech gets a text with service type and address within seconds. Speed matters: emergency leads call 2-3 shops; first to respond wins.

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

Quote scheduled work on the call

Rekeys are roughly priced ($15-25 per cylinder); car-key programming varies by make/model. Capture the make/model on the form so the tech can quote on the callback.

inbox · 1 newjust now
FROM contact@yoursite.com
New locksmith request
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.html41 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 locksmith request">

  <label for="name">Full name *</label>
  <input id="name" type="text" name="name" placeholder="Anna Lopez" required>
  <label for="phone">Phone *</label>
  <input id="phone" type="tel" name="phone" placeholder="+1 555 0142" required>
  <label for="address">Address *</label>
  <input id="address" type="text" name="address" placeholder="1247 Valencia St" required>
  <label for="service">Service needed *</label>
  <select id="service" name="service" required>
    <option value="">Choose…</option>
    <option>Locked out — house</option>
    <option>Locked out — car</option>
    <option>Locked out — office</option>
    <option>Rekey existing locks</option>
    <option>New lock install</option>
    <option>Smart-lock install</option>
    <option>Safe opening</option>
  </select>
  <label for="urgency">How urgent? *</label>
  <select id="urgency" name="urgency" required>
    <option value="">Choose…</option>
    <option>Emergency — locked out now</option>
    <option>Within an hour</option>
    <option>Today</option>
    <option>This week</option>
  </select>
  <label for="details">Notes</label>
  <textarea id="details" name="details" placeholder="Type of lock, vehicle make/model, anything we should bring."></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.js57 lines
<form id="lf-form">
  <label for="name">Full name *</label>
  <input id="name" type="text" name="name" placeholder="Anna Lopez" required>
  <label for="phone">Phone *</label>
  <input id="phone" type="tel" name="phone" placeholder="+1 555 0142" required>
  <label for="address">Address *</label>
  <input id="address" type="text" name="address" placeholder="1247 Valencia St" required>
  <label for="service">Service needed *</label>
  <select id="service" name="service" required>
    <option value="">Choose…</option>
    <option>Locked out — house</option>
    <option>Locked out — car</option>
    <option>Locked out — office</option>
    <option>Rekey existing locks</option>
    <option>New lock install</option>
    <option>Smart-lock install</option>
    <option>Safe opening</option>
  </select>
  <label for="urgency">How urgent? *</label>
  <select id="urgency" name="urgency" required>
    <option value="">Choose…</option>
    <option>Emergency — locked out now</option>
    <option>Within an hour</option>
    <option>Today</option>
    <option>This week</option>
  </select>
  <label for="details">Notes</label>
  <textarea id="details" name="details" placeholder="Type of lock, vehicle make/model, anything we should bring."></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 locksmith request');

    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.tsx72 lines
'use client';

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

export default function LocksmithCalloutForm() {
  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 locksmith request');

    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="phone">Phone *</label>
      <input id="phone" type="tel" name="phone" placeholder="+1 555 0142" required />
      <label htmlFor="address">Address *</label>
      <input id="address" type="text" name="address" placeholder="1247 Valencia St" required />
      <label htmlFor="service">Service needed *</label>
      <select id="service" name="service" required>
        <option value="">Choose…</option>
        <option>Locked out — house</option>
        <option>Locked out — car</option>
        <option>Locked out — office</option>
        <option>Rekey existing locks</option>
        <option>New lock install</option>
        <option>Smart-lock install</option>
        <option>Safe opening</option>
      </select>
      <label htmlFor="urgency">How urgent? *</label>
      <select id="urgency" name="urgency" required>
        <option value="">Choose…</option>
        <option>Emergency — locked out now</option>
        <option>Within an hour</option>
        <option>Today</option>
        <option>This week</option>
      </select>
      <label htmlFor="details">Notes</label>
      <textarea id="details" name="details" placeholder="Type of lock, vehicle make/model, anything we should bring." />

      <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', 'phone', 'address', 'service', 'urgency', 'details'];
    $payload = ['access_key' => 'YOUR_ACCESS_KEY'];
    $payload['subject'] = 'New locksmith request';

    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.sh10 lines
curl -X POST https://splitforms.com/api/submit \
  -H "Accept: application/json" \
  -d "access_key=YOUR_ACCESS_KEY" \
  -d "subject=New locksmith request" \
  -d "name=Jane Builder" \
  -d "phone=+15555555555" \
  -d "address=Jane Builder" \
  -d "service=Locked out — house" \
  -d "urgency=Emergency — locked out now" \
  -d "details=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 I list pricing on the site?
Show callout fees and rekey-per-cylinder ranges. Hidden pricing in this trade reads as the bait-and-switch operators consumers are warned about online — transparency converts better than mystery.
02Can I route lockout calls separately from quote leads?
Yes — the urgency dropdown drives a webhook branch. 'Emergency' fires a Twilio SMS to the on-call tech; 'quote only' lands in the office inbox for next-business-day callback.
03How do I handle car-key programming inquiries?
Add make/model/year fields. Most modern transponder keys are make-specific and the tech needs to verify equipment in the truck before driving 40 miles. Capture VIN if possible — saves 90% of failed callouts.
04What about commercial / master-key system inquiries?
Different sales process — these are 5-figure projects with site visits and bid documents. Add a 'commercial' radio that routes to the owner's email, not dispatch.
✻ ✻ ✻

Ship your locksmith emergency callout 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