RFP (Request for Proposal) | Copy-paste forms | MyFormConnect
← All forms

RFP (Request for Proposal)

Request for proposal with company, project scope, and timeline.

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="Contact name" required>
  <input type="email" name="email" placeholder="Email" required>
  <input type="text" name="company" placeholder="Company / organization">
  <input type="text" name="project_name" placeholder="Project name">
  <textarea name="scope" placeholder="Project scope" required></textarea>
  <input type="text" name="timeline" placeholder="Expected timeline">
  <textarea name="message" placeholder="Additional requirements"></textarea>
  <button type="submit">Submit RFP</button>
</form>