Skip to content

Commit

Permalink
Merge pull request #698 from bluewave-labs/feat/privacy-policy-TOS
Browse files Browse the repository at this point in the history
Add TOS and Privacy Policy links, resovles #697
  • Loading branch information
ajhollid authored Aug 22, 2024
2 parents 2fdc670 + ca3c1c9 commit 506e3e8
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 4 deletions.
27 changes: 25 additions & 2 deletions Client/src/Pages/Auth/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,31 @@ const LandingPage = ({ onContinue }) => {
<Box maxWidth={400}>
<Typography className="tos-p">
By continuing, you agree to our{" "}
<Typography component="span">Terms of Service</Typography> and{" "}
<Typography component="span">Privacy Policy.</Typography>
<Typography
component="span"
onClick={() => {
window.open(
"https://bluewavelabs.ca/terms-of-service-open-source",
"_blank",
"noreferrer"
);
}}
>
Terms of Service
</Typography>{" "}
and{" "}
<Typography
component="span"
onClick={() => {
window.open(
"https://bluewavelabs.ca/privacy-policy-open-source",
"_blank",
"noreferrer"
);
}}
>
Privacy Policy.
</Typography>
</Typography>
</Box>
</Stack>
Expand Down
27 changes: 25 additions & 2 deletions Client/src/Pages/Auth/Register/Register.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,31 @@ const LandingPage = ({ isAdmin, onSignup }) => {
<Box maxWidth={400}>
<Typography className="tos-p">
By signing up, you agree to our{" "}
<Typography component="span">Terms of Service</Typography> and{" "}
<Typography component="span">Privacy Policy.</Typography>
<Typography
component="span"
onClick={() => {
window.open(
"https://bluewavelabs.ca/terms-of-service-open-source",
"_blank",
"noreferrer"
);
}}
>
Terms of Service
</Typography>{" "}
and{" "}
<Typography
component="span"
onClick={() => {
window.open(
"https://bluewavelabs.ca/privacy-policy-open-source",
"_blank",
"noreferrer"
);
}}
>
Privacy Policy.
</Typography>
</Typography>
</Box>
</Stack>
Expand Down

0 comments on commit 506e3e8

Please sign in to comment.