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

# Signup

> Allow users to sign up for an account.

## Setup

<Steps>
  <Step title="Signup Form">
    Add a Webflow form to the Signup page.
  </Step>

  <Step title="Signup Form - Attribute">
    Add the following attribute to the `Form` element of the Webflow form:

    ```html theme={null}
    looop=signupform
    ```
  </Step>

  <Step title="Signup Form - Fields">
    Add [available fields](#available-fields) to the form
  </Step>

  <Step title="Success Redirect">
    In the `Form` element settings, set the `Redirect URL`. On successful signup, the user will be redirected to this URL.

    <Frame>
      <img src="https://mintcdn.com/thinddev/WJpokBS_R24FjARc/images/form-redirect.png?fit=max&auto=format&n=WJpokBS_R24FjARc&q=85&s=6288c094501d329e904ec12e5c443529" width="478" height="564" data-path="images/form-redirect.png" />
    </Frame>
  </Step>
</Steps>

## Available Fields

### First Name

<sup>`required`</sup>

```html theme={null}
looop=customer_firstname
```

### Last Name

<sup>`required`</sup>

```html theme={null}
looop=customer_lastname
```

### Email

<sup>`required`</sup>

```html theme={null}
looop=customer_email
```

### Password

<sup>`required`</sup>

```html theme={null}
looop=customer_password
```

### Marketing consent

<sup>`optional`</sup>

```html theme={null}
looop=marketing_consent
```

<Note>
  Make sure the marketing\_concent field is a checkbox. This field should be optional and can be used to collect user consent for marketing.
</Note>
