> For the complete documentation index, see [llms.txt](https://deltaclan.gitbook.io/superform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://deltaclan.gitbook.io/superform/global-options/save-data-and-progress.md).

# Save Data & Progress

Save form data & progress — locally.

## Setup

**Attribute:** `sf-save-progress = true`

**Where:** [Form Container](/superform/essentials/form-container.md)&#x20;

**Description:** Enables offline storage for the form, allowing users to save their progress locally and continue later, even after closing the page or browser.

**HTML Example**

{% code title="index.html" %}

```html
<!-- Form Container with Save Data & Progress Settings -->
<div sf="myForm" sf-save-progress="true">
    <form>
        <!-- Step 1 -->
        <!-- Step 2 -->
        <!-- ..rest -->
    </form>
</div>

```

{% endcode %}

**Webflow Example**

{% embed url="<https://files.gitbook.com/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDGLtnaQr6bP3qHCWvX0r%2Fuploads%2FiAGVPkwncuVOFbSpoNFX%2FSave%20Progress.mp4?alt=media&token=70093e76-ddec-4107-9504-c3549841c854>" %}
VIDEO: Selecting the Form Container element, adding the `sf-save-progress = true`
{% endembed %}

{% hint style="info" %}

#### Access Data Locally

Data is saved to a local storage key, `sf-data`, and can be restored automatically upon returning to the form, providing a seamless user experience (see [Javascript SDK](/superform/js-sdk/intro-to-superform-api.md)).

{% endhint %}
