Skip to content

Commit

Permalink
PIMS-1999 Terms and Conditions Wording (#2647)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarkowsky committed Sep 11, 2024
1 parent e584cce commit 8f0e749
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
21 changes: 17 additions & 4 deletions react-app/src/constants/jsxSnippets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,23 @@ export const accountInactiveBlurb = () => {

export const signupTermsAndConditionsClaim = (
<>
By signing up, you agree to the{' '}
<a href="https://www2.gov.bc.ca/gov/content/home/disclaimer">Terms and Conditions</a> and
confirm that you have read the{' '}
<a href="https://www2.gov.bc.ca/gov/content/home/privacy">Privacy Policy</a>.
By signing up, you confirm that you have read the{' '}
<a
href="https://www2.gov.bc.ca/gov/content/home/disclaimer"
target="_blank"
rel="noopener noreferrer"
>
Disclaimer
</a>{' '}
and{' '}
<a
href="https://www2.gov.bc.ca/gov/content/home/privacy"
target="_blank"
rel="noopener noreferrer"
>
Privacy Policy
</a>
.
</>
);

Expand Down
8 changes: 1 addition & 7 deletions react-app/src/pages/AccessRequest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,7 @@ export const AccessRequest = () => {
{selectPageContent()}
</Paper>

<Typography
lineHeight={1.8}
marginX={'6em'}
fontSize={'0.8rem'}
mt={'1rem'}
textAlign={'center'}
>
<Typography lineHeight={1.8} fontSize={'0.8rem'} mt={'1rem'} textAlign={'center'}>
{signupTermsAndConditionsClaim}
</Typography>
</Box>
Expand Down

0 comments on commit 8f0e749

Please sign in to comment.