FormLoom + bolt.new
Prompt + llms.txtbolt.new scaffolds full apps in-browser. Prompt it to use FormLoom for the backend form handling.
1. Just ask
Type a prompt like:
“Build a landing page with a waitlist form that submits to FormLoom.”
What you get back
bolt.new calls get_snippet + provision_endpoint and writes framework-correct code with a live access key — it works on first run:
app/contact/page.tsx
// app/contact/page.tsx — Next.js 15 App Router, Server Action
export default function ContactPage() {
async function submit(formData: FormData) {
"use server";
const res = await fetch("https://formloom.vercel.app/api/submit/fl_provisioned_key", {
method: "POST",
headers: { "Content-Type": "application/json", Accept: "application/json" },
body: JSON.stringify(Object.fromEntries(formData)),
});
// FormLoom scores spam, stores the row, and emails you — no backend to wire.
return res.json();
}
return (
<form action={submit}>
<label>
Name
<input type="text" name="name" required />
</label>
<label>
Email
<input type="email" name="email" required />
</label>
<label>
Message
<textarea name="message" required placeholder="How can we help?"></textarea>
</label>
<!-- honeypot: bots fill this, humans don't see it -->
<input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off" />
<button type="submit">Send</button>
</form>
);
}Steps
- 1Prompt bolt.new to add a form wired to FormLoom.
- 2Our llms.txt ensures the generated fetch call targets the right endpoint.
- 3Swap in your access key (or install the SDK) and deploy.
FAQ
Yes — prompt it to submit the form to FormLoom; the generated code POSTs to the hosted endpoint, no backend to build.