> ## Documentation Index
> Fetch the complete documentation index at: https://fillout.com/help/llms.txt
> Use this file to discover all available pages before exploring further.

# Combine and repeat forms

> Connect separate forms together or allow respondents to re-submit a form with Fillout.

export const SupportBanner = () => {
  const titleId = React.useId();
  return <div className="support-banner" role="region" aria-labelledby={titleId}>
      <span className="support-banner__ring support-banner__ring--outer" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--middle" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--inner" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--center" aria-hidden="true" />

      <div className="support-banner__content">
        <div className="support-banner__title" id={titleId} role="heading" aria-level="2">Still have questions?</div>

        <div className="support-banner__copy">
          <span className="support-banner__line">Our team is happy to help. Start a live chat using the</span>
          <span className="support-banner__line">
            chat bubble <span className="support-banner__chat-icon" aria-hidden="true" /> in the bottom right, or email us at
          </span>
          <span className="support-banner__line">
            <a href="mailto:support@fillout.com">support{'@'}fillout.com</a>
          </span>
        </div>

        <a className="support-banner__cta" href="mailto:support@fillout.com">Contact us</a>
      </div>
    </div>;
};

## Video tutorial

<iframe src="https://www.loom.com/embed/294b87e92afa4de78e005a30ee29d41b" title="iframe video" frameborder="0" allowFullScreen loading="lazy" scrolling="auto" width="100%" height="540px" />

## Auto-redirect to another form

Go to your form's [**Ending page**](/help/ending-page) and click `New form` in the left-hand panel. Then, select the new form you want to redirect respondents to in the dropdown.

<img src="https://mintcdn.com/fillout-005a867b/KoIJwCu27k-Dnxhl/images/Screenshot2025-11-27at5.59.26PM.png?fit=max&auto=format&n=KoIJwCu27k-Dnxhl&q=85&s=45be4f5411eef2798488a39efdf13cc8" alt="Screenshot 2025-11-27 at 5.59.26 PM.png" width="1857" height="993" data-path="images/Screenshot2025-11-27at5.59.26PM.png" />

### Pass data between forms with URL parameters

Optionally `Set URL parameters` to pre-fill data in the new form. For example, a respondent’s email from the current form can automatically appear in the new form so they don’t have to type it again.

<img src="https://mintcdn.com/fillout-005a867b/KoIJwCu27k-Dnxhl/images/Screenshot2025-11-27at6.18.29PM.png?fit=max&auto=format&n=KoIJwCu27k-Dnxhl&q=85&s=94099eccf7e70e0256287c0934baed32" alt="Screenshot 2025-11-27 at 6.18.29 PM.png" title="Screenshot 2025-11-27 at 6.18.29 PM.png" style={{ width:"71%" }} width="1078" height="516" data-path="images/Screenshot2025-11-27at6.18.29PM.png" />

First, make sure you've registered the URL parameter in the new form to redirect to. Check out the steps [here](/help/url-parameters). Then, click `+ Add new` in the popup to set a URL parameter.

That's it! Make sure to `Publish` both forms when you're ready to go live.

## Allow re-submission

On your form's [**Ending page**](/help/ending-page) , drag and drop a `Fill again` button from the left-hand panel.

<img src="https://mintcdn.com/fillout-005a867b/eyFDt8-J2lN7LjRZ/images/logic/image-25.png?fit=max&auto=format&n=eyFDt8-J2lN7LjRZ&q=85&s=db9e0df6856790ccb5ff89381693bfba" alt="Screenshot of the Form designer tab of a form" style={{ width:"46%" }} width="506" height="214" data-path="images/logic/image-25.png" />

By default, the form will restart from the first page. To change this, enable the `Start from page` switch in the right-hand panel.

<img src="https://mintcdn.com/fillout-005a867b/eyFDt8-J2lN7LjRZ/images/logic/image-26.png?fit=max&auto=format&n=eyFDt8-J2lN7LjRZ&q=85&s=648a73d4859a5852249687c0ea9d5aa5" alt="Screenshot of the Form designer tab of a form" style={{ width:"45%" }} width="506" height="396" data-path="images/logic/image-26.png" />

## Related articles

<CardGroup cols={3}>
  <Card title="Ending page" icon="party-bell" iconType="regular" color="#FFC738" href="/help/ending-page">
    Show a thank you page, redirect, or allow re-submission.
  </Card>

  <Card title="URL Parameters" icon="brackets-curly" iconType="regular" color="#FFC738" href="/help/url-parameters">
    Pass URL parameters to your embeds to track data.
  </Card>

  <Card title="Form parameters" icon="file-brackets-curly" iconType="regular" color="#FFC738" href="/help/url-parameters-between-forms">
    Share data between forms with URL parameters.
  </Card>
</CardGroup>

<SupportBanner />
