> For the complete documentation index, see [llms.txt](https://docs.appetize.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appetize.io/features/advanced-features/android/hide-password-visibility.md).

# Hide Password Visibility

### With Query Parameter

Add the `hidePasswords=true` query parameter to your app or embed URL

```uri
&hidePasswords=true
```

See [Query Params Reference](/platform/query-params-reference.md#hidepasswords) for more information.

### With JavaScript SDK

Set `hidePasswords: true` in the configuration e.g.

```typescript
await client.setConfig({
    hidePasswords: true,
    ...
})
```

See [Configuration](/javascript-sdk/configuration.md#hidepasswords) for more information.
