Every published form gets a public URL you can share anywhere — email, Slack, social posts, QR codes.
The URL format
The default URL is:
https://nodumforms.com/f/[shortId]/[slug]
shortIdis a stable 8-character ID that never changes.slugis a friendly version of the form title — it updates if you rename the form.
The shortId is what really matters: even if the slug changes, old links keep working as long as the shortId is correct.
Getting the link
Click Publish (or Update) in the builder to open the share popover. The URL is shown with a one-click copy button. The same popover is reachable any time later by clicking the Live badge in the toolbar.
QR codes
Generate a QR code for any form URL with any QR generator (or paste the URL into a service like qr-code-generator.com). Useful for posters, event signage, or printed mail.
Embedding in another site
Native embed snippet isn't built yet. As a workaround you can wrap the public URL in your own :
<iframe
src="https://nodumforms.com/f/[shortId]/[slug]"
width="100%"
height="800"
frameborder="0"
></iframe>
The page's chrome (header, branding badge) will be visible inside the iframe. A dedicated embed mode that strips this chrome is on the roadmap.