Feedback Form | Copy-paste forms | MyFormConnect
← All forms

Feedback Form

Customer feedback with rating and comments.

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 (optional)">
  <input type="email" name="email" placeholder="Email (optional)">
  <select name="rating" required>
    <option value="">How would you rate us?</option>
    <option value="5">5 - Excellent</option>
    <option value="4">4 - Good</option>
    <option value="3">3 - Average</option>
    <option value="2">2 - Below average</option>
    <option value="1">1 - Poor</option>
  </select>
  <textarea name="feedback" placeholder="Your feedback" required></textarea>
  <button type="submit">Submit Feedback</button>
</form>