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

# Megaport Portal User and Admin Settings

> This help topic describes how to access the Megaport Portal User and Admin settings

export const Image = ({src, alt = '', caption, width, height, shadow}) => {
  const errorPrefix = '\x1b[31;1;4mERROR\x1b[0m: Image -';
  if (typeof src !== 'string') {
    src = String(src);
  }
  if (!src || src === 'undefined') {
    console.error(`${errorPrefix} \`src\` is required — rendering an empty string instead`);
    return <></>;
  }
  const img = <img className={['mega-image-style', shadow ? 'shadow' : ''].join(' ')} src={src} alt={alt} width={width} height={height} style={{
    display: 'block'
  }} />;
  return caption ? <figure>
      {img}
      <figcaption style={{
    textAlign: 'center',
    width
  }}>{caption}</figcaption>
    </figure> : img;
};

The Settings menu in the Megaport Portal is used to administer your User and Company details.

The Settings menu is located in the User menu at the far right of the Portal header bar.

<Image src="/images/portal-admin/user-menu-settings.png" alt="This image shows how to access the settings menu" shadow={true} width={300} />

## Using the Settings menu

The **Settings** menu is split into two groups.

* **User Settings** -- User settings allow you to manage settings for your own user account.
* **Admin Settings** -- Admin settings allow you to create and update company settings, if you are a Company Admin.

<Note>
  The image below shows the options available to a Company Admin. The options you see depend on your Megaport account role.
</Note>

<Image src="/images/portal-admin/settings-menu-ac.png" alt="This image shows the settings menu for a Company Admin" shadow={true} width={225} />

## Setting the language

Use the **Language** option to set the language for the Megaport Portal. Select your preferred language from the drop-down list.

<Note>
  To set the language for the Megaport documentation, click the globe icon on the top right of this page and select your preferred language from the drop-down list.

  <Image src="/images/portal-admin/docs-language.png" alt="This image shows how to set the preferred language for the Megaport docs site" shadow={true} width={150} />
</Note>

## Logging out

Click **Logout** to safely log out of the Megaport application.

If you have the Megaport Portal or Quoting Tool open in multiple tabs in the same browser, logging out in one tab automatically logs you out of all other open tabs of that application. The other tabs update immediately without requiring a refresh and display a message with a link to log in again.

<Note>
  This behavior applies only to tabs in the same browser and is application-specific. Logging out of the Megaport Portal does not log you out of the Quoting Tool, and vice versa.
</Note>

## Helpful references

* [Assigning a Finance User Role](/finance/finance-user)
* [Configuring Email Notifications](/portal-admin/email-notifications)
* [Downloading an Invoice](/finance/download-invoice)
* [Enabling Billing Markets](/finance/enabling-market)
* [Logging in to the Megaport Portal](/setting-up/logging-in)
* [Managing Security Settings](/portal-admin/security-settings)
* [Managing User Roles](/portal-admin/user-management/roles)
* [Managing Your User Profile](/setting-up/manage-profile)
* [Modifying a Company Profile](/setting-up/company-profile)
* [Multi-Factor Authentication](/setting-up/enforcing-mfa)
* [Setting up Single Sign-On](/setting-up/enforcing-sso)
* [Updating Your Billing Information](/finance/payment-info)
* [Using Webhooks in the Megaport Portal](/portal-admin/using-webhooks)
* [Viewing Activity Logs](/portal-admin/activity-logs)
