> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-feat-universal-portals.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Portals Overview

> Learn about Auth0 Universal Portals.

export const ReleaseStageNotice = ({feature, stage, plans, contact, terms}) => {
  const stageTextMap = {
    "beta": "Beta",
    "ea": "Early Access"
  };
  const stageText = stageTextMap[stage] || "a product release stage";
  const prsLink = "/docs/troubleshoot/product-lifecycle/product-release-stages";
  const linkify = (text, url) => {
    return <a href={url} target="_blank" rel="noreferrer" class="link">{text}</a>;
  };
  const includeDetails = (plans, contact, terms) => {
    const hasDetails = terms || plans || contact;
    if (!hasDetails) return null;
    return <span data-as="p">
            {plans && <>This feature is available for {linkify(`${plans} plans`, "https://auth0.com/pricing")}. </>}
            {contact && "To participate, contact " + contact + ". "}
            {terms && <>By using this feature, you agree to the applicable Free Trial terms in Okta's {linkify("Master Subscription Agreement", "https://www.okta.com/legal")}.</>}
        </span>;
  };
  return <Warning>
            <span data-as="p">
                <strong>The {feature} feature is in {linkify(stageText, prsLink)}.</strong>
            </span>

            {includeDetails(plans, contact, terms)}
        </Warning>;
};

<ReleaseStageNotice feature="Auth0 Universal Portals" stage="beta" terms="true" contact="Auth0 Support" />

Auth0 Universal Portals is a hosted identity experience platform that allows customers to deploy pre-built, fully managed portals - profile management, organization settings, onboarding, and more - without writing code, hosting infrastructure, or maintaining custom UI.
It provides a visual editor to  compose pages from pre-built identity components. Configure layout, navigation, and behavior visually.
It leverages Universal Components to provide pre-built, configurable components that encapsulate identity logic (profile management, MFA enrollment, org settings).

## Portals benefits

## Portals use cases

* Consumer portals, self-service experiences for end-users: profile management, security settings, MFA enrollment, password changes, etc.
* Business portals, self-service experiences for business customers managing their organization: SSO configuration, domain verification, invite team members, etc.
* Partner portals, self-service experiences for external partners operating within your ecosystem: onboarding and verification, resource management, performance analytics, payout tracking, compliance documentation, and communication with your platform team.
* Developer portals, self-service experiences for third-party developers and partners building on top of your platform: application registration, OAuth client creation, integration publishing, etc.
* Internal portals, support and operations teams acting on behalf of customers: password resets, session revocation, permission adjustments, account unlocks, etc.
* Public portals, anonymous experiences for users before they authenticate: signup flows, KYB/KYC onboarding, password reset, etc.

## Learn more

Read **[Configure Portals](/docs/customize/portals/configure)** to learn how to configure Auth0 Universal Portals.
