Seamlessly add document signing into Next.js apps in minutes.
Signing Form
Embed our full interactive Signing Form into your Next.js applications. It offers a streamlined, user-friendly interface for efficient and seamless document signing experience.
Form Builder
Utilize our comprehensive Form Builder to effortlessly create and customize document templates. It enhances your application with a full-features document creation tool.
Embed the Signing Form React component effortlessly into your application to enhance the document signing experience. It is perfectly suited for KYC, CRM and onboarding workflows, thereby ensuring a smooth and cohesive user experience across your platform.
import React from "react";
import { DocusealForm } from '@docuseal/react';
export default function Home() {
return (
<div className="app">
<DocusealForm
src="http://localhost:3000/d/LEVGR9rhZYf86M"
email="signer@example.com"
onComplete={(data) => console.log(data)}
/>
</div>
);
}
Seamlessly integrate our Form Builder into your Next.js applications, not just for document signing but also for crafting the entire document form. With just a few lines of code, you can effortlessly embed a comprehensive document builder, enhancing both the functionality and the user experience on your platform.
import jwt from 'jsonwebtoken';
import { DocusealBuilder } from '@docuseal/react';
export default function Home({ token }) {
return (
<div className="app">
<DocusealBuilder token={token} />
</div>
);
}
export async function getServerSideProps() {
const token = jwt.sign({
user_email: 'admin_user@example.com',
integration_email: 'signer@example.com',
name: 'Integration W-9 Test Form',
document_urls: ['https://www.irs.gov/pub/irs-pdf/fw9.pdf'],
}, process.env.DOCUSEAL_TOKEN);
return { props: { token } };
}
DocuSeal allows you to bring document signing process into your apps.
This perfectly fits CRM, KYC, and onboarding workflows.