# Customer

Customer filters output URLs that enable customers to interact with their accounts in the store.

## customer\_login\_link

`string | customer_login_link`

returns  [string](../basics/liquid-types#string)

Generates an HTML link to the customer login page.

**Code**

```liquid
{{ 'Log in' | customer_login_link }}
```

**Output**

```html
<a href="/account/login" id="customer_login_link">Log in</a>
```
