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

# Adding users

> Invite and onboard new users to Porto.

export const ImageCarousel = ({images, perView = 3, children}) => {
  const [page, setPage] = useState(0);
  const [imgH, setImgH] = useState(0);
  const stripRef = useRef(null);
  const THUMB_MAX_WIDTH = 220;
  const PEEK_WIDTH = 34;
  useEffect(() => {
    const strip = stripRef.current;
    if (!strip) return;
    const measure = () => {
      const box = strip.querySelector("[data-carousel-imgbox]");
      if (box && box.clientHeight) setImgH(box.clientHeight);
    };
    measure();
    const ro = new ResizeObserver(measure);
    ro.observe(strip);
    return () => ro.disconnect();
  }, []);
  const fromChildren = React.Children.toArray(children).map(c => c && c.props && c.props.src ? {
    src: c.props.src,
    alt: c.props.alt
  } : null).filter(Boolean);
  const items = fromChildren.length ? fromChildren : images || [];
  if (!items.length) return null;
  const count = items.length;
  const columns = Math.min(perView, count);
  const totalPages = Math.ceil(count / columns);
  const showControls = totalPages > 1;
  const goTo = p => setPage((p % totalPages + totalPages) % totalPages);
  const prev = () => goTo(page - 1);
  const next = () => goTo(page + 1);
  const start = page * columns;
  const visible = items.slice(start, start + columns);
  const prevPeek = start > 0 ? items[start - 1] : null;
  const nextPeek = start + columns < count ? items[start + columns] : null;
  const renderPeek = (img, side) => {
    if (!img) return null;
    const isLeft = side === "left";
    return <button type="button" onClick={isLeft ? prev : next} aria-hidden="true" tabIndex={-1} style={{
      flex: `0 0 ${PEEK_WIDTH}px`,
      width: PEEK_WIDTH + "px",
      alignSelf: imgH ? "flex-start" : "stretch",
      height: imgH ? imgH + "px" : undefined,
      border: 0,
      padding: 0,
      cursor: "pointer",
      opacity: 0.5,
      borderRadius: isLeft ? "10px 0 0 10px" : "0 10px 10px 0",
      backgroundImage: `url("${img.src}")`,
      backgroundRepeat: "no-repeat",
      backgroundSize: "auto 100%",
      backgroundPosition: isLeft ? "right center" : "left center",
      WebkitMaskImage: `linear-gradient(to ${isLeft ? "left" : "right"}, #000 15%, transparent 100%)`,
      maskImage: `linear-gradient(to ${isLeft ? "left" : "right"}, #000 15%, transparent 100%)`
    }} />;
  };
  const arrowStyle = {
    flex: "0 0 auto",
    width: "30px",
    height: "30px",
    borderRadius: "50%",
    border: "1px solid var(--ad-border, #e4e5e7)",
    background: "var(--background, #fff)",
    fontSize: "16px",
    lineHeight: "28px",
    textAlign: "center",
    cursor: "pointer",
    padding: 0
  };
  return <div style={{
    outline: "none",
    margin: "1.5rem 0"
  }} role={showControls ? "group" : undefined} aria-label={showControls ? "Screenshot carousel" : undefined} aria-roledescription={showControls ? "carousel" : undefined}>
      <div style={{
    display: "flex",
    alignItems: "center",
    gap: "10px"
  }}>
        {showControls && <button type="button" onClick={prev} aria-label="Previous screenshots" style={arrowStyle}>
            ‹
          </button>}

        <div ref={stripRef} style={{
    display: "flex",
    flexWrap: "nowrap",
    alignItems: "flex-start",
    gap: "14px",
    justifyContent: "center",
    flex: 1
  }}>
          {renderPeek(prevPeek, "left")}
          {}
          {Array.from({
    length: columns
  }).map((_, i) => {
    const img = visible[i];
    const slotStyle = {
      margin: 0,
      flex: "1 1 0",
      maxWidth: THUMB_MAX_WIDTH + "px",
      minWidth: 0
    };
    if (!img) {
      return <div key={start + i} aria-hidden="true" style={{
        ...slotStyle,
        visibility: "hidden"
      }} />;
    }
    return <div key={start + i} style={slotStyle}>
                <span data-carousel-imgbox style={{
      display: "block"
    }}>
                  <img src={img.src} alt={img.alt ?? ""} style={{
      display: "block",
      width: "100%",
      height: "auto",
      margin: 0,
      borderRadius: "10px",
      border: "1px solid var(--ad-border, #e4e5e7)"
    }} />
                </span>
                {img.alt && <div style={{
      marginTop: "6px",
      fontSize: "12px",
      lineHeight: 1.4,
      color: "var(--ad-muted, #6b7280)",
      textAlign: "center"
    }}>
                    {img.alt}
                  </div>}
              </div>;
  })}
          {renderPeek(nextPeek, "right")}
        </div>

        {showControls && <button type="button" onClick={next} aria-label="Next screenshots" style={arrowStyle}>
            ›
          </button>}
      </div>

      {showControls && <div style={{
    textAlign: "center",
    marginTop: "8px",
    fontSize: "12px",
    color: "var(--ad-muted, #6b7280)"
  }}>
          {start + 1}
          {visible.length > 1 ? "–" + (start + visible.length) : ""} of {count}
        </div>}
    </div>;
};

<Note>
  Only administrators can add new users to an organization and generate invites.
</Note>

## Invite a new user

<Steps>
  <Step title="Navigate to Team settings">
    Tap the **Settings** icon (bottom right), tap **Team**, then tap **Add new user**.
  </Step>

  <Step title="Define the new user's role and vault access">
    Select the permission levels for the user, then tap **Continue**. Select the vaults the user will have access to and tap **Continue**. Then select the vault policies the user will be a required approver of.
  </Step>

  <Step title="Enter the new user's email address">
    Provide the email address of the user you would like to invite.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/porto-add-user-role-selection.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=69c8f10d857812a51102ba7698df37d7" alt="Add user screen for selecting a team role" width="828" height="1792" data-path="knowledge-base/images/screenshots/porto-add-user-role-selection.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/porto-add-user-vault-selection.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=289692bf0532668ebfb15d144ee2cc97" alt="Add user screen for selecting which vaults the new user can access" width="828" height="1792" data-path="knowledge-base/images/screenshots/porto-add-user-vault-selection.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/porto-add-user-vault-policy-selection.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=e6fb8cd1a9820774ba0a2e1faf7d0079" alt="Add user screen for selecting vault policies for operator access" width="828" height="1792" data-path="knowledge-base/images/screenshots/porto-add-user-vault-policy-selection.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/porto-add-user-email.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=947d6e5e02defde8cb03f84bcccc64e0" alt="Add user screen for entering the new user's email address" width="828" height="1792" data-path="knowledge-base/images/screenshots/porto-add-user-email.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/porto-add-user-invite-sent.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=dea5df2b22df3a456e2789b8a6d022f7" alt="Confirmation screen showing the invite was sent to the new user's email address" width="828" height="1792" data-path="knowledge-base/images/screenshots/porto-add-user-invite-sent.png" />
</ImageCarousel>

The new user will receive an invite via email from `institutional@messages.anchorage.com` with instructions for how to join the organization.

## New user onboarding

<Steps>
  <Step title="Download the Porto iOS app">
    In the invite email, tap **Download the Porto iOS app** to download the mobile app from the Apple App Store.
  </Step>

  <Step title="Complete KYC enrollment">
    Follow the in-app prompts to complete identity verification (KYC) enrollment.
  </Step>

  <Step title="Scan the enrollment QR code">
    Scan the enrollment QR code to link your device to the organization.
  </Step>
</Steps>

## Quorum approval

Once the new user completes enrollment, the operation must be approved by the organization's quorum administrators.

<Steps>
  <Step title="Initiator notification">
    The administrator who initiated the request receives an alert notifying them to approve the operation.
  </Step>

  <Step title="Quorum approval">
    Quorum administrators receive a notification to approve the **Add user** operation.
  </Step>

  <Step title="Biometric authentication">
    Each approving administrator taps **Add user** and completes biometric authentication to confirm.
  </Step>
</Steps>

Once the quorum is met, the new user gains access to the organization and its assigned vaults.
