A booking-request form for salons and barbershops — the service, a preferred stylist, and when. You confirm each request personally, which keeps your calendar yours and gives every new client a human first touch.
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.
⚠ 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" required>
<label for="service">Service</label>
<select id="service" name="service" required>
<option>Haircut</option>
<option>Color</option>
<option>Cut & color</option>
<option>Styling</option>
<option>Beard / shave</option>
<option>Other</option>
</select>
<label for="preferred-stylist-if-any">Preferred stylist (if any)</label>
<input type="text" id="preferred-stylist-if-any" name="preferred-stylist-if-any">
<label for="preferred-date">Preferred date</label>
<input type="date" id="preferred-date" name="preferred-date" required>
<label for="preferred-time-of-day">Preferred time of day</label>
<select id="preferred-time-of-day" name="preferred-time-of-day" required>
<option>Morning</option>
<option>Midday</option>
<option>Afternoon</option>
<option>Evening</option>
</select>
<!-- 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">Request appointment</button>
</form>
Adding it to your site? Step-by-step guides: WordPress, Shopify, Wix, Squarespace, Webflow or a static site.
A live calendar has to expose your real availability and handle every edge case; a request form lets you decide. For a small salon, confirming by reply takes seconds and no-shows drop because a person, not a system, said "see you Thursday".
Yes — the preferred-stylist field is free text and optional, so regulars ask for their person and new clients skip it without friction.
Tentmaker Stores gives you a complete online store — product pages, checkout and everything in between. Built for small makers and niche sellers.