Use our no-code solution to effortlessly integrate the document signing process into any web or mobile app.
Simply embed this code into any section of your website to seamlessly introduce the document signing process into your applications. It's an ideal solution tailored for CRM, KYC, and onboarding workflows, ensuring a streamlined experience for your users.
<script src="https://appscript-scripts.s3.ap-south-1.amazonaws.com/boloforms-embed-index.min.js"></script>
<script>
// Create an instance of BoloFormsEmbed
let embed = new BoloFormsEmbed({
containerId: "embed-container",
token: "your-embed-key",
iframeOpts: { width: "100%", height: "600px" },
sessionInfo: { userId: 1, userName: "John Doe" },
});
</script>
Effortlessly incorporate BoloSign's React components into your application, providing you with the flexibility to tailor them precisely to your requirements, ensuring a cohesive user experience.
import React, { useEffect } from "react";
const SampleEmbeddedForm = () => {
useEffect(() => {
const script = document.createElement("script");
script.src =
"https://appscript-scripts.s3.ap-south-1.amazonaws.com/boloforms-embed-index.min.js";
script.async = true;
script.onload = () => {
if (document.querySelector("#embed-container").childElementCount > 0)
return;
// Create an instance of BoloFormsEmbed once the script is loaded
const embed = new BoloFormsEmbed({
containerId: "embed-container",
token: "your-embed-key",
iframeOpts: { width: "100%", height: "600px" },
sessionInfo: { userId: 1, userName: "John Doe" },
});
};
document.body.appendChild(script);
return () => {
document.body.removeChild(script);
};
}, []);
return <div id="embed-container" />;
};
More Embedding
Not only can you seamlessly integrate forms for document signing, but you also have the capability to embed the entire interface for creating these documents. Say goodbye to intricate integration processes. By simply incorporating a few lines of code, you can effortlessly introduce a comprehensive document builder and additional features, enhancing the user experience on your platform.
One fixed price for unlimited signatures, templates, forms, and contracts—no extra charges for adding users and more signatures.