After a lead successfully books a call, they’re redirected to a confirmation page.
This step reassures them that the booking was successful and provides immediate clarity and confidence that the meeting is scheduled.
iClosed provides two Confirmation page options:
iClosed Confirmation Page
External URL, with embedded confirmation details (optional)
Pro tips
The same embed code will work for all events.
If you have multiple events in iClosed routed to a single external URL the embed code will automatically display the correct confirmation details based on the event the lead was routed to.
The code is optimized for all webpage builders, but for Framer will require this adjusted code. Make sure to copy it from here and paste it as custom code created in Framer assets.
import { useEffect } from "react"
export default function MiniEmbed() {
useEffect(() => {
const script = document.createElement("script")
script.src = "https://app.iclosed.io/assets/widget.js"
script.async = true
document.body.appendChild(script)
}, [])
return (
<div
className="call-details-widget"
data-url="https://app.iclosed.io/embed"
style={{ width: "500px", height: "360px" }}
></div>
)
}