Sales Lead Form
Capture company, role, and budget info from prospects. Pipe straight to your CRM or inbox via webhook.
Before you start
Before using the Form Template below, you need a Formtorch endpoint.
Don't have one yet? Sign up now and get one in less than 5 minutes.
Don't have one yet? Sign up now and get one in less than 5 minutes.
Add your Formtorch endpoint
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
Create a Formtorch endpoint
Sign up and create a new form endpoint in the dashboard. You will get a unique URL in seconds.
Create endpointPaste it into your form
Set your form's action attribute to your endpoint URL. No other changes required.
Deploy and start receiving submissions
Every submission is stored in your dashboard, triggers email notifications, and can fire webhooks to any service.
Frequently asked questions
No. Formtorch works with standard HTML forms via the action attribute. No JavaScript required for basic submissions.
Start in less than 5 minutes
Create your endpoint, paste it into any template, and you are live.