From dc82e908fb1367871d03d051b798bd1ccbd17028 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 24 Feb 2020 15:54:40 -0500 Subject: [PATCH] add back TOS on login for web only --- ui/component/userEmailNew/view.jsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/ui/component/userEmailNew/view.jsx b/ui/component/userEmailNew/view.jsx index 8a733b30d..8ea748ca1 100644 --- a/ui/component/userEmailNew/view.jsx +++ b/ui/component/userEmailNew/view.jsx @@ -4,6 +4,7 @@ import { FormField, Form } from 'component/common/form'; import Button from 'component/button'; import analytics from 'analytics'; import { EMAIL_REGEX } from 'constants/email'; +import I18nMessage from 'component/i18nMessage'; type Props = { errorMessage: ?string, @@ -99,6 +100,26 @@ function UserEmailNew(props: Props) { /> + {/* @if TARGET='web' */} +

+ + + ), + }} + > + By continuing, I agree to the %terms% and confirm I am over the age of 13. + + +

+ {/* @endif */} ); }