Skip to main content

Terms of service & Privacy policy links

You can provide a Privacy policy and Terms of service link which will render the following text on the sign up page:

import SuperTokens from "supertokens-auth-react";import ThirdPartyEmailPassword from "supertokens-auth-react/recipe/thirdpartyemailpassword";import Session from "supertokens-auth-react/recipe/thirdpartyemailpassword";
SuperTokens.init({    appInfo: {        apiDomain: "...",        appName: "...",        websiteDomain: "..."    },    recipeList: [        ThirdPartyEmailPassword.init({            signInAndUpFeature: {                signUpForm: {                    termsOfServiceLink: "https://example.com/terms-of-service",                    privacyPolicyLink: "https://example.com/privacy-policy"                }            }        }),        Session.init({ /* ... */ })    ]});
Which frontend SDK do you use?
supertokens-web-js / mobile
supertokens-auth-react