Skip to content

Commit

Permalink
Add privacy policy
Browse files Browse the repository at this point in the history
  • Loading branch information
LMacPhail committed Jan 31, 2024
1 parent 3b23edb commit 8c5643d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/auth/Auth.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useState } from "react";
import { supabase } from "../../supabaseClient";
import { MODAL_DISMISSED_KEY } from "../../state/store";
import Link from "../atoms/Link";

export default function Auth() {
const [loading, setLoading] = useState(false);
Expand Down Expand Up @@ -32,7 +33,7 @@ export default function Auth() {
<p>Could you help us by signing up?</p>
</div>
<form className="form-widget" onSubmit={handleLogin}>
<div className="w-full flex flex-row items-center justify-center gap-4">
<div className="w-full flex flex-col md:flex-row items-center justify-center gap-4">
<label htmlFor="sign_up_input" className="sr-only">
Sign up email here
</label>
Expand All @@ -52,6 +53,12 @@ export default function Auth() {
{loading ? <span>Loading</span> : <span>Sign Up</span>}
</button>
</div>
<p className="text-xs italic mt-2">
You can see how we handle user data in{" "}
<Link link="https://www.mvmtresearch.org/privacy-policy">
our privacy policy.
</Link>
</p>
</form>
</div>
);
Expand Down

0 comments on commit 8c5643d

Please sign in to comment.