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

# Add a working form to a page

> Use a native Jobing form so the page keeps its own design and responses arrive in your inbox.

Jobing forms can sit directly inside your page. They do not need a generic iframe.

Your page controls the labels, layout, colors, fonts, spacing, and button. Jobing receives and stores the answers.

## Ask for the outcome

> Create a marketing page for my consulting service with a consultation form. Ask for name, email, company, budget range, preferred start date, and project details.

Jobing AI creates the form and page together. When you later say “Publish it,” it publishes the correct form, places it directly inside the page with matching design, publishes the page, and returns the relevant links.

## What Jobing handles

<Steps>
  <Step title="Create the form draft">
    Jobing creates a private form draft from your request.
  </Step>

  <Step title="Publish the form">
    When you approve publishing, Jobing creates the working form connection.
  </Step>

  <Step title="Place the form inside the page">
    Jobing uses the form directly inside the page and matches its design. It does not use a generic iframe.
  </Step>

  <Step title="Publish the page">
    Jobing publishes the page and returns the live and dashboard links.
  </Step>

  <Step title="Check the inbox">
    Confirm that the response appears in the correct form.
  </Step>
</Steps>

## If you add the form manually

Each input has a name that matches a question in Jobing. For example:

```html theme={null}
<form method="POST" enctype="multipart/form-data"
  action="YOUR_JOBING_FORM_URL">
  <label>
    Email
    <input name="email" type="email" required>
  </label>
  <button type="submit">Send request</button>
</form>
```

You can change the visible label and styling. Keep the `action` address and each input's `name`.

<Warning>
  Do not paste a private integration credential into page code or an AI conversation.
</Warning>

See [share and embed a form](/forms/share-and-embed) for hosted links, plain HTML, React, redirects, and website restrictions.
