formify-form
v0.1.0
Published
Add contact forms to any site just in a few steps
Maintainers
Readme
Formify is an open source application that lets you create, manage and embed contact forms on any site without writing code.
Installation
With yarn
yarn add formify-formWith NPM
npm install formify-formGetting Started
First visit formify.vercel.app and get the formURL and formFields if you want to use Formify application.
Or if you have an end point that accepts forms then you can make use of it.
import { Form } from 'formify-form';
const App = () => {
return (
<div>
<Form
formFields={['name', 'email', 'message']}
formURL='https://formify.vercel.app/api/forms/submissions?id=<ID from formify>'
formTitle='Share your feedback'
/>
</div>
);
};You can see a contact form icon at the bottom right corner of your site and anybody can fill the details and submit it.
About Formify
Find more details about Formify project at Formify Github
License
Formify is distributed using the MIT License. Check the License details.
