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

# Full access required template

> Reference for customizing the Customer Portal full-access-required screen.

The `full_access_required.liquid` template controls the screen customers see when they open a limited-access link and then navigate to a page that requires full access.

## Liquid variables

| Variable                         | Description                                        |
| -------------------------------- | -------------------------------------------------- |
| `project.company_name`           | The merchant-facing company name.                  |
| `project.company_logo_url`       | The company logo URL, when configured.             |
| `full_access_required.login_url` | The URL customers use to sign in with full access. |

Use `full_access_required.login_url` for the sign-in action:

```liquid theme={null}
<a href="{{ full_access_required.login_url | escape }}" class="rounded-xl bg-black px-4 py-3 text-white">
  {{ "full_access_required.login_button" | t }}
</a>
```

The full-access-required template does not expose components that require an authenticated subscription.
