> ## 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 checkout 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>;
};

In this help article, we'll show you how to include links to your Terms of Service and Privacy Policy in the [Memberful purchase form](/overview/getting-started/checkout-experience/). This helps set clear expectations with new members and maintain transparency.

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

<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="Display TOS and privacy policy" width="1440" height="635" data-path="images/settings/display-tos-and-privacy-policy/tos-privacy-policy-customize-form.png" />
</Frame>

If you add links to your terms of service and privacy policy, Memberful will display 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="Link to terms of service and privacy policy" 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: "Add your branding to the purchase forms.",
}}
  link3={{
url: "/configuration/feedback-and-policies/create-custom-fields/",
label: "Add custom fields to your purchase forms.",
}}
/>
