diff --git a/web/components/account/index.ts b/web/components/account/index.ts index 0d1cffbc6..18b021cb9 100644 --- a/web/components/account/index.ts +++ b/web/components/account/index.ts @@ -2,3 +2,4 @@ export * from "./o-auth"; export * from "./sign-in-forms"; export * from "./sign-up-forms"; export * from "./deactivate-account-modal"; +export * from "./terms-and-conditions"; diff --git a/web/components/account/sign-in-forms/root.tsx b/web/components/account/sign-in-forms/root.tsx index fad37efaf..a03bd379e 100644 --- a/web/components/account/sign-in-forms/root.tsx +++ b/web/components/account/sign-in-forms/root.tsx @@ -8,6 +8,7 @@ import { SignInPasswordForm, OAuthOptions, SignInOptionalSetPasswordForm, + TermsAndConditions, } from "@/components/account"; import { LatestFeatureBlock } from "@/components/common"; import { NAVIGATE_TO_SIGNUP } from "@/constants/event-tracker"; @@ -121,6 +122,7 @@ export const SignInRoot = observer(() => { Sign up
++ {isSignUp ? "By creating an account" : "By signing in"}, you agree to our{" \n"} + + Terms of Service + {" "} + and{" "} + + Privacy Policy + + {"."} +
+ + ); +};