Learn how to ingest your first submission using HTML
index.html
<!DOCTYPE html> <html> <head> <title>Formizee HTML Example</title> </head> <body> <form method="post" action="https://api.formizee.com/v1/f/enp_123456"> <label for="name"> Name <input id="name" autoComplete="name" name="name" /> </label> <label for="email"> Email <input id="email" autoComplete="email" name="email" /> </label> <button type="submit">Submit</button> </form> </body> </html>
pnpm add -D http-server
package.json
"scripts": { "dev": "http-server ." }, "devDependencies": { "http-server": "14.1.1" },
pnpm run dev
Was this page helpful?