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

# Share or add a form to a website

> Use the hosted form link or connect a native HTML or React form to Jobing.

Open a published form, then select **Share**.

## Share the hosted form

Copy **Live form URL** and send it by email, message, social post, or button.

The hosted form uses the design and behavior settings from the form editor.

## Keep your website design

The Share page provides:

* the form endpoint;
* a plain HTML example;
* a React example.

Your website can change every visible part. Keep:

* the form `action` address;
* the `POST` method;
* `multipart/form-data` when files may be uploaded;
* input names that match Jobing question response names.

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

## Ask your connected AI

> Add my consultation form to the contact section of my website and publish the update.

Jobing AI automatically uses the working form connection, keeps it inside the page instead of an iframe, matches the existing design, and returns the updated links.

## Test the complete flow

<Steps>
  <Step title="Open the public page">
    Do not rely only on an editor preview.
  </Step>

  <Step title="Submit realistic test data">
    Test required questions, choices, validation, and uploads.
  </Step>

  <Step title="Confirm the success step">
    Check the message or redirect.
  </Step>

  <Step title="Open the response inbox">
    Verify the answers arrived under the correct form.
  </Step>

  <Step title="Check integrations">
    Confirm connected destinations received the response.
  </Step>
</Steps>

See [troubleshooting](/help/troubleshooting#form-submission-problems) if the website form cannot submit.
