Booking / Appointment Form | Copy-paste forms | MyFormConnect
← All forms

Booking / Appointment Form

Appointment or booking request with date, time, and service type.

Endpoint

POST https://myformconnect.io/f/YOUR_FORM_ID

Replace YOUR_FORM_ID with your form ID from MyFormConnect.

Copy-paste HTML
<form action="https://myformconnect.io/f/YOUR_FORM_ID" method="POST">
  <input type="text" name="name" placeholder="Name" required>
  <input type="email" name="email" placeholder="Email" required>
  <input type="tel" name="phone" placeholder="Phone" required>
  <input type="date" name="preferred_date">
  <input type="time" name="preferred_time">
  <select name="service_type">
    <option value="">Service type</option>
    <option value="consultation">Consultation</option>
    <option value="appointment">Appointment</option>
    <option value="demo">Demo</option>
  </select>
  <textarea name="notes" placeholder="Additional notes"></textarea>
  <button type="submit">Request Booking</button>
</form>