Embedding a Form
Embed your form directly into any website or web app using an <iframe>.
Getting the embed code
Open your form from the dashboard
Copy the provided <iframe> snippet
The embed code looks like this:
<iframe
src="https://forms.wtf/embed/your-slug"
width="100%"
height="600"
frameborder="0"
style="border: none; border-radius: 12px;"
allow="clipboard-write"
></iframe>
The embed version is designed to sit inside your existing page layout. It has a transparent background and no navigation chrome.
Set the width and height to match your layout:
For forms with variable length, a height of 600–800px works well for most forms.
Wallet connection in embeds
Respondents can still connect their wallet within the embedded form. The wallet modal opens as a popup overlay on top of the iframe.
Note: For wallet connection to work in embeds, ensure your site does not block popup windows or the allow="clipboard-write" permission.
Token gating in embeds
Token gating works the same way in embedded forms. If a respondent doesn't meet the requirements, they see the gate message within the iframe.
Your form must be published for the embed to work
The embed URL is accessible to anyone (subject to your token gate rules)
No additional configuration needed — all form settings apply to the embedded version
Last updated