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
109import { useState } from 'react';
import * as Auth from 'aws-amplify/auth';
import * as API from 'aws-amplify/api';
import { Link, useNavigate } from 'react-router-dom';
import { sleep, useGlobalStore } from '#src/utils';
import { useQueryClient } from '@tanstack/react-query';
import { usePostHog } from 'posthog-js/react';
import styles from "./Signup.module.scss";
import { Logo } from "#src/components/Logo";
import { StyledButton } from "#src/components/StyledButton";
export const Signup = () => {
const queryClient = useQueryClient();
const { loading, setLoading, setAuthenticated } = useGlobalStore();
const [error, setError] = useState('');
const navigate = useNavigate();
const posthog = usePostHog();
const signup = async (e) => {
e.preventDefault();
const { name, email, password } = Object.fromEntries(new FormData(e.currentTarget));
if (password.length < 6) {
alert(`Your password must be at least 6 characters long.`);
return;
}
setLoading(true);
const { userExists } = await (await API.post({
apiName: 'public', path: '/checkIfUserExists', options: { body: { email } }
}).response).body.json();
if (userExists) {
setLoading(false);
alert(`It looks like you already have an account- log in to renew your subscription.`);
navigate(`/login?email=${encodeURIComponent(email)}`)
return;
}
try {
await Auth.signUp({
username: crypto.randomUUID(),
password: password,
options: {
userAttributes: {
email: email,
name: name,
},
autoSignIn: { enabled: true }
}
});
await sleep(500);
await Auth.autoSignIn();
const attributes = (await Auth.fetchAuthSession()).tokens?.idToken?.payload
setAuthenticated(attributes?.sub);
posthog?.identify(attributes?.sub, { email: attributes?.email });
setLoading(false);
setTimeout(() => {
API.post({ apiName: 'auth', path: '/trackUser' }).response
queryClient.refetchQueries({ queryKey: ['user'] })
}, 1000);
navigate('/audits');
}
catch (err) {
console.log(err);
setLoading(false);
setError(err?.message);
}
}
return (<form onSubmit={signup} className={styles.signup}>
<div className={styles.header}>
<div className={styles.logo}>
<Logo />
</div>
<h1 className={`${styles.title} initial-focus-element`}>Sign up for Equalify</h1>
</div>
{import.meta.env.VITE_SSO_ENABLED ? <div className={`${styles.error}`}>Sorry, you may only login using your SSO provider.</div> : <>
<div className={`${styles.signUpForm}`}>
<label htmlFor='name'>Name</label>
<input id='name' name='name' required type='text' placeholder='John Doe' />
<label htmlFor='email'>Email address</label>
<input id='email' name='email' required type='email' placeholder='johndoe@example.com' />
<label htmlFor='password'>Password</label>
<input id='password' name='password' required type='password' placeholder='Password' />
<div className={`${styles.terms}`}>
<input id='terms' name='terms' required type='checkbox' placeholder='terms' />
<label htmlFor='terms'>I agree to the <a target='_blank' href='https://equalify.app/terms-of-service/'>Terms of Service</a> and <a target='_blank' href='https://equalify.app/privacy-policy/'>Privacy Policy</a>.</label>
</div>
{error && <div className={`${styles.error}`}>{error}</div>}
<StyledButton
variant='green'
onClick={``}
label={`Sign Up`}
/>
</div>
</>}
<p>
<span>Already have an account? </span>
<Link to="/login" className={styles.authLink}>
Log in
</Link>
</p>
</form>)
}