Franchise Inquiry | Copy-paste forms | MyFormConnect
← All forms

Franchise Inquiry

Franchise opportunity inquiry with location and investment range.

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="text" name="city" placeholder="City / region of interest">
  <select name="investment_range">
    <option value="">Investment range</option>
    <option value="under-50k">Under $50K</option>
    <option value="50k-100k">$50K - $100K</option>
    <option value="100k-250k">$100K - $250K</option>
    <option value="250k-plus">$250K+</option>
  </select>
  <textarea name="message" placeholder="Tell us about yourself"></textarea>
  <button type="submit">Submit Inquiry</button>
</form>