{"title":"Register Form - Liquid Form Reference","slug":"register-form-reference","url":"https://support.storeconnect.com/articles/register-form-reference","url_markdown":"https://support.storeconnect.com/articles/register-form-reference.md","subtitle":null,"summary":"The `register` Liquid form creates a new customer account, collecting password, email, name, phone, company, campaign IDs, and billing address.","type":"Developer_Documentation","video_url":"","keywords":"liquid, forms, register, accounts, storeconnect","last_modified":"2026-08-21T07:12:35+0000","body_markdown":"## Usage\n\n\n```liquid\n\n{% form \"register\" %}\n  \u003c!-- Form fields here --\u003e\n{% endform %}\n```\n\n\n| Property | Value |\n|----------|-------|\n| **Form Name** | `register` |\n| **Category** | Accounts |\n\n## Fields\n\n| Field Name | Description |\n|------------|-------------|\n| `password` | Password |\n| `email` | Email |\n| `firstname` | Firstname |\n| `lastname` | Lastname |\n| `phone` | Phone |\n| `campaign_ids` | Campaign Ids |\n| `company_name` | Company Name |\n| `billing_address_lines` | Billing Address Lines |\n| `billing_city` | Billing City |\n| `billing_state` | Billing State |\n| `billing_postal_code` | Billing Postal Code |\n| `billing_country` | Billing Country |\n\n## Form Object\n\nInside the form block, you can access the `form` object which provides:\n\n- `form.errors` — Any validation errors after submission\n- `form.fields` — Array of form field objects, each with `name`, `value`, `errors`, and `required`"}