-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathCreateAccount.tsx
30 lines (28 loc) · 1.06 KB
/
CreateAccount.tsx
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
import { SignUpForm } from '~/app/(blobs)/(setup)/_components/SignUpForm';
import { Alert, AlertDescription, AlertTitle } from '~/components/ui/Alert';
import Heading from '~/components/ui/typography/Heading';
import Paragraph from '~/components/ui/typography/Paragraph';
function CreateAccount() {
return (
<div className="w-[30rem]">
<div className="mb-4">
<Heading variant="h2">Create an Account</Heading>
<Paragraph>
To use Fresco, you need to set up an administrator account which will
enable to you access the protected parts of the app. Only one
administrator account can be created.
</Paragraph>
</div>
<Alert variant="warning">
<AlertTitle>Important</AlertTitle>
<AlertDescription>
It is not possible to recover the account details if they are lost.
Make sure to store the account details in a safe place, such as a
password manager.
</AlertDescription>
</Alert>
<SignUpForm />
</div>
);
}
export default CreateAccount;