# Form Runner navigation bar

## Introduction

The Form Runner navigation bar shows at the top of the page when Orbeon Forms is not [embedded](https://doc.orbeon.com/form-runner/link-embed) within another application.

![Form Runner navigation bar](https://4129616727-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LEkBiSDvlXs3VWiO0Zu%2Fuploads%2Fgit-blob-0c0b7972ec9d4cfcca0556a1f715783c4a2ad658%2Fnavbar.png?alt=media)

It features the following elements:

* The logo, which can be customized
* The form title
  * This always shows
* The language selector
* The login menu
  * \[SINCE Orbeon Forms 2018.2]
  * this is disabled by default
* The link to the Landing page
  * \[SINCE Orbeon Forms 2022.1]
  * this is enabled by default
* The Revision History button
  * [\[SINCE Orbeon Forms 2023.1\]](https://doc.orbeon.com/release-notes/orbeon-forms-2023.1)
  * this is disabled by default
  * available only on the Detail page in Edit mode
* The Share button
  * [\[SINCE Orbeon Forms 2023.1\]](https://doc.orbeon.com/release-notes/orbeon-forms-2023.1)
  * this is disabled by default
  * available only on the Detail page in Edit/View modes

## Configuration

### Logo

See [Default logo](https://doc.orbeon.com/configuration/properties/form-runner#default-logo) for details.

### Language selector

The language selector is enabled by default. You can disable it globally by setting the following property to `false`:

```xml
<property
    as="xs:boolean"
    name="oxf.fr.navbar.language-selector.enable"
    value="false"/>
```

### Login menu

\[SINCE Orbeon Forms 2018.2]

See [Login & Logout](https://doc.orbeon.com/form-runner/access-control/login-logout) for details.

### Landing page link

\[SINCE Orbeon Forms 2022.1]

This link points to the Landing page. It is enabled by default, but you can disable it globally by setting the following property to `false`:

```xml
<property
    as="xs:boolean"
    name="oxf.fr.navbar.home-link.enable"
    value="false"/>
```

### Revision History button

[\[SINCE Orbeon Forms 2023.1\]](https://doc.orbeon.com/release-notes/orbeon-forms-2023.1)

This button opens the Revision History pane. It is disabled by default, but you can enable it or disable it by app/form by setting the following property to `true`:

```xml
<property
    as="xs:boolean"
    name="oxf.fr.navbar.data-history.enable.*.*"
    value="true"/>
```

Form Builder explicitly disables it by default, so if you'd like to enable the Revision History button for Form Builder, you must explicitly enable it:

```xml
<property
    as="xs:boolean"
    name="oxf.fr.navbar.data-history.enable.orbeon.builder"
    value="true"/>
```

### Share button

[\[SINCE Orbeon Forms 2023.1\]](https://doc.orbeon.com/release-notes/orbeon-forms-2023.1)

See [Token-based permissions](https://doc.orbeon.com/access-control/tokens#using-the-share-dialog) for details.

## See also

* [Default logo](https://doc.orbeon.com/configuration/properties/form-runner#default-logo)
* [Login & Logout](https://doc.orbeon.com/form-runner/access-control/login-logout)
* [Token-based permissions](https://doc.orbeon.com/access-control/tokens#using-the-share-dialog)
* [Revision history](https://doc.orbeon.com/form-runner/features/revision-history)
