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

Contact Form

Simple contact form with name, email, and message. Use on any static or AI-generated site. No backend required.

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="Your name" required>
  <input type="email" name="email" placeholder="Email" required>
  <textarea name="message" placeholder="Your message" required></textarea>
  <button type="submit">Send</button>
</form>