A quick reference for embedding Rally sign-up forms on your website.


Embedding Rally Flows

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.


Basic Implementation

<!-- 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:


Required Attributes

allow Permissions

The following permissions must be set for full functionality:

allow="web-share; clipboard-write"

?embed=true Query Parameter

Add ?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.