Embedding Forms

Forms Creator Guides Sharing Forms

Embedding forms directly

You can show forms directly on your own webpages by copying one of our embed codes. To get started:

  1. Open your form's responses page.
  2. Click Share in the menu bar.
  3. Select the Embed tab in the Sharing popup.
  4. Choose the embed code you'd like to use, and paste it into your webpages code.

Submitting data from custom HTML forms

If you'd like to keep the style and structure of an existing form on your website, but submit the form's data to Sonadier, you can change the form's action attribute to a form submission URL.

<form action="https://{{organization}}.sonadier.io/{{form}}/embedded/submit"> ... </form>

Replace {{organization}} with the 10-character subdomain for your organization. Replace {{form}} with your form's 10-character permalink, which you can find in the URL of the form's responses list.

Adding a custom redirect

Your form will redirect users to the link given by its redirect option. If you'd like to add a different redirect just for this custom form, use a hidden input named _redirect.

<input type="hidden" name="_redirect" value="https://www.sonadier.com" />