A quick reference for embedding Rally sign-up forms on your website.
Rally sign-up flows can be embedded in your website using a standard <iframe> element. When embedded, Rally automatically detects the iframe context and strips away all Rally branding and chrome, allowing your site's design to control the visual presentation.
<!-- Include the Rally embed script once per page -->
<script src="<https://go.rally.win/embed.js>"></script>
<!-- Add your Rally iframe -->
<iframe
src="<https://go.rally.win/pm/><your-form-slug>/go?embed=true"
allow="web-share; clipboard-write"
width="100%"
scrolling="no"
style="border: none; min-height: 400px; overflow: hidden;">
</iframe>
How it works:
embed.js script automatically resizes the iframe to match the Rally form's content heightallow PermissionsThe following permissions must be set for full functionality:
web-share — Enables users to share content via their device's native share functionalityclipboard-write — Allows users to copy information to their clipboardallow="web-share; clipboard-write"
?embed=true Query ParameterAdd ?embed=true to the form URL to explicitly enable embed mode. While Rally can auto-detect iframe contexts, this parameter ensures consistent behavior across all browsers.