A sharable form builder built with Next.js, Shadcn/UI.
Preview the project here Visit the repository here Visit My github here
- Create sharable forms
- Preview forms
- Copy form URL
- Data validation using zod
- Clone the repository
- Run
npm install
- Run
npm run dev
- Open http://localhost:3000
- You can create save the form in the database and then use the id to get the form and display it in the preview page.
- You can collect the data in the database and use it for your own purposes, by accessing each field via the id property (_1, _2, _3), read the code and the
fieldSchema
function in @/lib/utils to understand.