Form Templates / Sales Lead Form

BeginnerHTMLReactNext.js

Sales Lead Form

Capture company, role, and budget info from prospects. Pipe straight to your CRM or inbox via webhook.

Preview

Company
Your role
Monthly budget
Email
This form is for preview only.

Preview only. Replace the endpoint in the code with your Formtorch URL.

Code

Paste your form ID and the code below updates instantly.

lead-form.html
<form
action="https://formtorch.com/f/abc123"
method="POST"
>
<div>
<label for="company">Company</label>
<input
id="company"
type="text"
name="company"
placeholder="Acme Corp"
required
/>
</div>
 
<div>
<label for="role">Your role</label>
<input
id="role"
type="text"
name="role"
placeholder="e.g. Founder, CTO"
/>
</div>
 
<div>
<label for="budget">Monthly budget</label>
<select id="budget" name="budget">
<option value="">Select a range</option>
<option value="under-500">Under $500</option>
<option value="500-2000">$500 - $2,000</option>
<option value="2000-plus">$2,000+</option>
</select>
</div>
 
<div>
<label for="email">Work email</label>
<input
id="email"
type="email"
name="email"
placeholder="you@company.com"
required
/>
</div>
 
<button type="submit">Get in touch</button>
</form>

How it works

  1. 1

    Create a Formtorch endpoint

    Sign up and create a new form endpoint in the dashboard. You will get a unique URL in seconds.

    Create endpoint →
  2. 2

    Paste it into your form

    Set your form's action attribute to your endpoint URL. No other changes required.

    <form action="https://formtorch.com/f/abc123">
  3. 3

    Deploy and start receiving submissions

    Every submission is stored in your dashboard, triggers email notifications, and can fire webhooks to any service.

FAQ

No. Formtorch works with standard HTML forms via the action attribute. No JavaScript required for basic submissions.

Start collecting form submissions in minutes

Create your endpoint, paste it into any template, and you are live.