Learn how to ingest your first submission using Next.js
pnpm create-next-app@latest formizee-next-example
src/app/page.tsx
// Add here your Endpoint URL const ENDPOINT_URL = "https://api.formizee.com/v1/f/enp_123456"; export default function Page() { return ( <form method="post" action={ENDPOINT_URL}> <label htmlFor="name"> Name <input id="name" autoComplete="name" name="name" /> </label> <label htmlFor="email"> Email <input id="email" autoComplete="email" name="email" /> </label> <button>Submit</button> </form> ); }
pnpm run dev
Was this page helpful?