> ## 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.

# Form page

> Ask any type of question, collect signatures, display PDFs, and more through this most commonly used page type.

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>;
};

## Add a new form page

All newly created forms have a **Form** page labelled as **Page** where you can add any type of [field](/help/question-types) from the left-hand panel. Simply click or drag & drop your chosen field.

<img src="https://mintcdn.com/fillout-005a867b/S4ynxVWu2dd-N3yT/images/Screenshot2025-10-06at5.57.23PM.png?fit=max&auto=format&n=S4ynxVWu2dd-N3yT&q=85&s=cd3aec22616701c7467bc9c72cc3b5e4" alt="Screenshot 2025-10-06 at 5.57.23 PM.png" width="2747" height="1435" data-path="images/Screenshot2025-10-06at5.57.23PM.png" />

You can add more form pages by clicking `+ Add page` followed by **Form**.

## **Related articles**

<CardGroup cols={3}>
  <Card title="Field types" icon="question" iconType="regular" color="#FFC738" href="/help/question-types">
    Customize or change over 50 field types, add captions, and more.
  </Card>

  <Card title="Hide fields" icon="eye-slash" iconType="regular" color="#FFC738" href="/help/conditional-hiding">
    Hide or show fields based on answers, URL parameters or data.
  </Card>

  <Card title="Page logic" icon="diagram-project" iconType="regular" color="#FFC738" href="/help/page-logic">
    Hide or show pages or custom endings based on respondent input.
  </Card>
</CardGroup>

<SupportBanner />
