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

# Privacy controls

## Suppressing personal data

We take data privacy really seriously. This is why we added the ability to exclude specific form data from screenshots & replays.&#x20;

Simply add the class `rr-mask` to all input elements you want to exclude the values from. Once the class is added, the Gleap SDK will ignore the values from this specific element.

We also support hiding complete element groups by adding `rr-block` to their class name list.

### Example

#### Secure input example

```
<input name="secret" type="text" class="rr-mask" />
```

#### Hide a DOM element

```
<div class="test">
    <div class="left">
        Welcome :)
    </div>
    <div class="right rr-block">
        This text is sensitive!
    </div>
</div>
```

<Info>
  In addition, Gleap automatically masks password inputs by default. To mask every
  input value, call `Gleap.setReplayOptions({ maskAllInputs: true })` before
  initializing Gleap.
</Info>

## Disable default page tracking

Gleap tracks page views by default. If you want to disable this feature, simply add the following method before initializing the Gleap SDK.

```
Gleap.setDisablePageTracking(true);
```
