From a48f929d9421edc9cb1e4bafb3d0825428255d6e Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 3 Oct 2021 13:31:39 +0300 Subject: [PATCH] Signup: add a link to the terms of service. Fixes #188. --- src/SignupPage.tsx | 2 +- src/constants/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SignupPage.tsx b/src/SignupPage.tsx index e747eac..b8bfac2 100644 --- a/src/SignupPage.tsx +++ b/src/SignupPage.tsx @@ -246,7 +246,7 @@ export default function SignupPage() {

- You can also signup using any of the apps. + By signing up you agree to our terms of service.

diff --git a/src/constants/index.ts b/src/constants/index.ts index 9bc6e28..8f74bb7 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -7,6 +7,7 @@ export const homePage = "https://www.etesync.com/"; export const faq = homePage + "faq/"; export const pricing = homePage + "pricing/"; export const getApps = homePage + "get-apps/"; +export const terms = homePage + "tos/"; export const sourceCode = "https://github.com/etesync/etesync-web"; export const reportIssue = sourceCode + "/issues";