mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
9c7c2f1163
* seo friendly urls * custom client serve-static module * database fixes * fix recent pages * other fixes
98 lines
2.4 KiB
TypeScript
98 lines
2.4 KiB
TypeScript
import * as React from "react";
|
|
import * as z from "zod";
|
|
|
|
import { useForm, zodResolver } from "@mantine/form";
|
|
import {
|
|
Container,
|
|
Title,
|
|
TextInput,
|
|
Button,
|
|
PasswordInput,
|
|
Box,
|
|
} from "@mantine/core";
|
|
import { ISetupWorkspace } from "@/features/auth/types/auth.types";
|
|
import useAuth from "@/features/auth/hooks/use-auth";
|
|
import classes from "@/features/auth/components/auth.module.css";
|
|
|
|
const formSchema = z.object({
|
|
workspaceName: z.string().min(2).max(60),
|
|
name: z.string().min(2).max(60),
|
|
email: z
|
|
.string()
|
|
.min(1, { message: "email is required" })
|
|
.email({ message: "Invalid email address" }),
|
|
password: z.string().min(8),
|
|
});
|
|
|
|
export function SetupWorkspaceForm() {
|
|
const { setupWorkspace, isLoading } = useAuth();
|
|
// useRedirectIfAuthenticated();
|
|
|
|
const form = useForm<ISetupWorkspace>({
|
|
validate: zodResolver(formSchema),
|
|
initialValues: {
|
|
workspaceName: "",
|
|
name: "",
|
|
email: "",
|
|
password: "",
|
|
},
|
|
});
|
|
|
|
async function onSubmit(data: ISetupWorkspace) {
|
|
await setupWorkspace(data);
|
|
}
|
|
|
|
return (
|
|
<Container size={420} my={40} className={classes.container}>
|
|
<Box p="xl" mt={200}>
|
|
<Title order={2} ta="center" fw={500} mb="md">
|
|
Create workspace
|
|
</Title>
|
|
|
|
<form onSubmit={form.onSubmit(onSubmit)}>
|
|
<TextInput
|
|
id="workspaceName"
|
|
type="text"
|
|
label="Workspace Name"
|
|
placeholder="e.g ACME Inc"
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("workspaceName")}
|
|
/>
|
|
|
|
<TextInput
|
|
id="name"
|
|
type="text"
|
|
label="Your Name"
|
|
placeholder="enter your full name"
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("name")}
|
|
/>
|
|
|
|
<TextInput
|
|
id="email"
|
|
type="email"
|
|
label="Your Email"
|
|
placeholder="email@example.com"
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("email")}
|
|
/>
|
|
|
|
<PasswordInput
|
|
label="Password"
|
|
placeholder="Enter a strong password"
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("password")}
|
|
/>
|
|
<Button type="submit" fullWidth mt="xl" loading={isLoading}>
|
|
Setup workspace
|
|
</Button>
|
|
</form>
|
|
</Box>
|
|
</Container>
|
|
);
|
|
}
|