Pre-order Form | Copy-paste forms | MyFormConnect
← All forms

Pre-order Form

Pre-order with product choice and contact details.

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">
  <input type="text" name="product" placeholder="Product name / SKU">
  <input type="number" name="quantity" placeholder="Quantity" min="1" value="1">
  <textarea name="notes" placeholder="Special instructions"></textarea>
  <button type="submit">Pre-order</button>
</form>