File size: 5,303 Bytes
f909d7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
import React from "react";
import Head from "next/head";
import Link from "next/link";
import {
Anchor,
Button,
Center,
Divider,
Flex,
Paper,
PasswordInput,
Stack,
Text,
TextInput,
} from "@mantine/core";
import toast from "react-hot-toast";
import { AiOutlineGithub, AiOutlineGoogle } from "react-icons/ai";
import Layout from "src/layout/Layout";
import { supabase } from "src/lib/api/supabase";
const SignUp = () => {
const [loading, setLoading] = React.useState(false);
const [done, setDone] = React.useState(false);
const [userData, setUserData] = React.useState({
name: "",
email: "",
password: "",
});
const onSubmit = (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
setLoading(true);
supabase.auth
.signUp({
email: userData.email,
password: userData.password,
options: {
data: { name: userData.name },
},
})
.then(({ error }) => {
if (error) return toast.error(error.message);
toast.success("Please check your inbox to confirm mail address!", { duration: 7000 });
setDone(true);
})
.finally(() => setLoading(false));
};
const handleLoginClick = (provider: "github" | "google") => {
supabase.auth.signInWithOAuth({
provider,
options: { redirectTo: "https://jsoncrack.com/editor" },
});
};
return (
<Layout>
<Head>
<title>JSON Crack | Sign Up</title>
</Head>
{done ? (
<Paper mx="auto" maw={400} mt={50} p="lg" withBorder>
<Text mt="lg" style={{ textAlign: "center" }}>
Registration successul!
<br />
Please check your inbox for email confirmation.
</Text>
<Anchor component={Link} href="/sign-in">
<Button color="dark" radius="sm" mt="lg" fullWidth>
Back to login
</Button>
</Anchor>
</Paper>
) : (
<>
<Paper mx="auto" maw={400} mt={50} p="lg" withBorder>
<form onSubmit={onSubmit}>
<Stack>
<TextInput
onChange={e => setUserData(d => ({ ...d, name: e.target.value }))}
required
label="Name"
placeholder="John Doe"
radius="sm"
style={{ color: "black" }}
/>
<TextInput
onChange={e => setUserData(d => ({ ...d, email: e.target.value }))}
type="email"
required
label="Email"
placeholder="[email protected]"
radius="sm"
style={{ color: "black" }}
/>
<PasswordInput
onChange={e => setUserData(d => ({ ...d, password: e.target.value }))}
min={6}
required
label="Password"
placeholder="ββββββββββ"
radius="sm"
style={{ color: "black" }}
/>
<Button color="dark" type="submit" loading={loading}>
Sign up for free
</Button>
<Divider label="OR CONTINUE WITH" labelPosition="center" />
<Flex gap="sm">
<Button
radius="sm"
fullWidth
leftSection={<AiOutlineGoogle size="20" />}
onClick={() => handleLoginClick("google")}
color="red"
variant="outline"
>
Google
</Button>
<Button
radius="sm"
leftSection={<AiOutlineGithub size="20" />}
onClick={() => handleLoginClick("github")}
color="dark"
variant="outline"
fullWidth
loading={loading}
>
GitHub
</Button>
</Flex>
<Divider mx={-20} />
<Text fz="xs" c="gray">
By signing up, you agree to our{" "}
<Anchor fz="xs" component={Link} href="/legal/terms" c="gray" fw={500}>
Terms of Service
</Anchor>{" "}
and{" "}
<Anchor fz="xs" component={Link} href="/legal/privacy" c="gray" fw={500}>
Privacy Policy
</Anchor>
. Need help?{" "}
<Anchor
fz="xs"
component={Link}
href="mailto:[email protected]"
c="gray"
fw={500}
>
Get in touch.
</Anchor>
</Text>
</Stack>
</form>
</Paper>
<Center my="xl">
<Anchor component={Link} prefetch={false} href="/sign-in" c="dark" fw="bold">
Already have an account?
</Anchor>
</Center>
</>
)}
</Layout>
);
};
export default SignUp;
|