Skip to content

Commit

Permalink
Merge pull request #827 from Vizzuality/LET-1425-fe-modify-text-in-si…
Browse files Browse the repository at this point in the history
…gn-up-form-to-accept-terms-and-conditions-and-privacy-policy

[LET-1425][FE] Modify text in sign up form to accept terms and conditions and privacy policy
  • Loading branch information
SARodrigues authored Jan 22, 2024
2 parents d477ac2 + 383a0a0 commit d80cb4c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions frontend/pages/sign-up/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,20 @@ const SignUp: PageComponent<SignUpPageProps, AuthPageLayoutProps> = () => {
/>
<span className="ml-2 font-sans text-sm text-gray-800 font-regular">
<FormattedMessage
defaultMessage="I agree with the Terms and Privacy Policy."
id="X0E3iC"
defaultMessage="I agree with the <a>Terms & Conditions and Privacy Policy.</a>"
id="JiU7oK"
values={{
a: (chunks) => (
<Link href={Paths.TermsConditions}>
<a
className="underline focus-visible:outline focus-visible:outline-green-dark focus-visible:outline-2 focus-visible:outline-offset-2"
target="_blank"
>
{chunks}
</a>
</Link>
),
}}
/>
</span>
</label>
Expand Down

0 comments on commit d80cb4c

Please sign in to comment.