403 Access Request

Permission-denied page for team apps: an accent lock chip and bold headline on the left, the signed-in account card with an account switch link and a square-bullet list of access requirements on the right.

PRO

Error16: 403 Access Request

A permission-denied page for team apps: an accent lock chip and headline with a request button on the left, the signed-in account card and a square-bullet list of what actually unlocks the page on the right.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/error16?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/error16?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/error16.tsx, plus the two design-system primitives it renders through: badge6 for the square eyebrow and button1 for the seal call to action.

Quick start

The installed file exports error16Demo alongside the block: the exact props behind the preview above. Spread it to get a working permission page in one line.

tsx
import { Error16, error16Demo } from "@/components/beste/block/error16";

export default function Forbidden() {
  return <Error16 {...error16Demo} />;
}

Then pass the real session so the card shows who is actually signed in:

tsx
import { Error16 } from "@/components/beste/block/error16";

export default function Forbidden({ user }: { user: { name: string; email: string; image: string } }) {
  return (
    <Error16
      label="Access Denied"
      code="403"
      heading="This workspace is <strong>closed to you</strong>, for now."
      description="Your account is signed in, it simply has not been granted a seat here."
      labels={{ signedInAs: "Signed in as", requirementsTitle: "What unlocks this page" }}
      account={{
        name: user.name,
        email: user.email,
        avatar: { src: user.image, alt: "Portrait of the signed-in account holder" },
      }}
      switchLink={{ label: "Use a different account", href: "/sign-in" }}
      requirements={[
        "A seat on the workspace, granted by any owner",
        "Single sign-on through your company domain",
      ]}
      button={{ label: "Request a seat", href: "/request-access" }}
      link={{ label: "Back to your dashboard", href: "/app" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered through the square-marker badge
codestringStatus code shown after the eyebrow divider
headingstringHeadline HTML, rendered as an h1; <strong> marks the accent clause
descriptionstringExplanatory paragraph under the headline
labelsError16Labels{}Captions for the account card and the requirements list
accountAccountInfoThe signed-in account shown in the card
switchLinkActionLinkAccount switch link inside the card
requirementsstring[][]Square-bullet list of access requirements
buttonActionLinkSeal call to action under the description
linkActionLinkText link beside the call to action
classNamestringExtra classes for the outer <section>
ts
type Error16Labels = {
  signedInAs?: string;
  requirementsTitle?: string;
};

type AccountInfo = {
  name: string;
  email: string;
  avatar: { src: string; alt: string };
};

type ActionLink = {
  label: string;
  href: string;
};

Behavior notes

More Error blocks

View all Error
PRO

error23

Invitation Only Access

Monochrome permission page: a display headline over a request pill that swaps to a sent confirmation, a ruled record of the project, owner and visibility, and an overlapping avatar row of current members.

PRO

error26

Payment Required Lockout

Billing lockout page: an accent card chip and headline with an update-payment seal button on the left, an unpaid invoice table and a square-bullet list of what stays untouched on the right.

PRO

error28

Region Unavailable Notice

Geo-restriction page: an accent globe chip and headline, the detected region in a bordered strip, a two-column ruled list of markets with their rollout status, and a notify-me seal button.

PRO

error27

Session Expired Sign In

Timed-out session page: an accent headline over an account strip showing the avatar, address and sign-out timestamp, an autosave reassurance line, and a sign-in seal button beside an account switch link.

FREE

error7

404 Notice Card

Compact bordered 404 card with a circular icon, status label, heading, one-line explanation, and stacked full-width buttons. Sized for app shells and modals as well as full pages.

PRO

error15

500 Incident Report

Server error page with a square eyebrow and status code over a hairline rule, a bold accent headline, a bordered incident table of reference, timestamp and service rows, and a retry seal button beside a status page link.