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

# Display terms of service and privacy policy

> Display links to your terms of service and privacy policy in the Memberful purchase form so members can review and accept them before completing a purchase.

export const RelatedDocs = ({link1, link2, link3, link4, link5, link6, link7, link8, link9, link10, className = ""}) => {
  const links = [link1, link2, link3, link4, link5, link6, link7, link8, link9, link10].filter(Boolean);
  if (!links.length) return null;
  return <section className={`related-docs border dark:border-gray-700 rounded-2xl px-6 py-4 mt-6 ${className}`}>
      <p className="mb-2 font-medium">
        <strong>Related help docs:</strong>
      </p>
      <ul className="space-y-1 mb-1 mt-1">
        {links.map((link, index) => <li key={index}>
            <a href={link.url}>{link.label}</a>
          </li>)}
      </ul>
    </section>;
};

Terms of service and privacy policy links let members review your policies in the [Memberful purchase form](/docs/overview/getting-started/checkout-experience/) before they complete a purchase.

In this help article, we'll show you how to add these links to the Memberful purchase form and where members will see them.

## Add your policy links

In the Memberful dashboard, go to **Website** → **General settings** → **Policy settings** and add links to your terms of service and privacy policy.

<Frame>
  <img src="https://mintcdn.com/memberful/rh_I8e0Vok-s0pFM/images/settings/display-tos-and-privacy-policy/tos-privacy-policy-customize-form.png?fit=max&auto=format&n=rh_I8e0Vok-s0pFM&q=85&s=63d690d299fb0e571c2a70736d37474e" alt="Terms of service and privacy policy settings in Memberful" width="1440" height="635" data-path="images/settings/display-tos-and-privacy-policy/tos-privacy-policy-customize-form.png" />
</Frame>

After you add the links, Memberful displays them in the purchase form.

<Frame>
  <img src="https://mintcdn.com/memberful/rh_I8e0Vok-s0pFM/images/settings/display-tos-and-privacy-policy/tos-privacy-policy-purchase-form.png?fit=max&auto=format&n=rh_I8e0Vok-s0pFM&q=85&s=78d45037043a73c446a68a1f48e532fe" alt="Terms of service and privacy policy links in the purchase form" width="1440" height="1000" data-path="images/settings/display-tos-and-privacy-policy/tos-privacy-policy-purchase-form.png" />
</Frame>

<RelatedDocs
  link1={{
url: "/plans/individual-plans/create-a-plan/",
label: "Create a plan and sell subscriptions",
}}
  link2={{
url: "/configuration/branding/branding/",
label: "Brand your purchase forms",
}}
  link3={{
url: "/configuration/feedback-and-policies/create-custom-fields/",
label: "Add custom fields to purchase forms",
}}
/>
