Installation
Chirp Form uses Web Components (custom elements) to provide a simple integration for static websites.
CDN Installation (Recommended)
Add the script to your HTML head tag:
<script defer src="https://embed.chirpform.com/latest/chirpform.umd.js"></script>
Version Pinning
For production sites, we recommend pinning to a specific version:
<script defer src="https://embed.chirpform.com/v1.3.0/chirpform.umd.js"></script>
Replace 1.3.0 with your desired version number.
ESM Module
For modern browsers or build tools that support ES modules:
<script type="module" src="https://embed.chirpform.com/latest/chirpform.esm.js"></script>
Or import directly:
import 'https://embed.chirpform.com/v1.1.0/chirpform.esm.js';