COmanage enrollment landing pages#

Squareone supports COmanage Registry by providing pages that can be configured as URL callbacks for various stages of the enrollement workflow.

        flowchart TD
  thanksSigningUp(/enrollment/thanks-for-signing-up)
  thanksVerifying(/enrollment/thanks-for-verifying)
  pendingApproval(/enrollment/pending-approval)
  pendingConfirmation(/enrollment/pending-confirmation)

  thanksSigningUp --> thanksVerifying
  thanksSigningUp --> pendingConfirmation
  thanksVerifying --> pendingApproval
  pendingConfirmation --> thanksVerifying

    

The content for each page is written as MDX and loaded from MDX files at paths relative to the mdxDir configuration (defaults to src/content/pages in development).

URL

MDX file path

Purpose

/enrollment/thanks-for-signing-up

enrollment__thanks-for-signing-up.mdx

Direct user to verify email receipt

/enrollment/thanks-for-verifying

enrollment__thanks-for-verifying.mdx

Email verified, approval pending.

/enrollment/pending-confirmation

enrollment__pending-confirmation.mdx

Email still pending verification.

/enrollment/pending-approval

enrollment__pending-approval.mdx

Email verified, approval still pending.