mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
975b4dcaab
* auth pages layout * exclude home route from redirect * fix margin
67 lines
1.9 KiB
TypeScript
67 lines
1.9 KiB
TypeScript
import { z } from "zod/v4";
|
|
import { useForm } from "@mantine/form";
|
|
import { zod4Resolver } from "mantine-form-zod-resolver";
|
|
import useAuth from "@/features/auth/hooks/use-auth";
|
|
import { Box, Button, Container, PasswordInput, Title } from "@mantine/core";
|
|
import classes from "./auth.module.css";
|
|
import { useRedirectIfAuthenticated } from "@/features/auth/hooks/use-redirect-if-authenticated.ts";
|
|
import { useTranslation } from "react-i18next";
|
|
import { AuthLayout } from "./auth-layout.tsx";
|
|
|
|
const formSchema = z.object({
|
|
newPassword: z
|
|
.string()
|
|
.min(8, { message: "Password must contain at least 8 characters" }),
|
|
});
|
|
type FormValues = z.infer<typeof formSchema>;
|
|
|
|
interface PasswordResetFormProps {
|
|
resetToken?: string;
|
|
}
|
|
|
|
export function PasswordResetForm({ resetToken }: PasswordResetFormProps) {
|
|
const { t } = useTranslation();
|
|
const { passwordReset, isLoading } = useAuth();
|
|
useRedirectIfAuthenticated();
|
|
|
|
const form = useForm<FormValues>({
|
|
validate: zod4Resolver(formSchema),
|
|
initialValues: {
|
|
newPassword: "",
|
|
},
|
|
});
|
|
|
|
async function onSubmit(data: FormValues) {
|
|
await passwordReset({
|
|
token: resetToken,
|
|
newPassword: data.newPassword,
|
|
});
|
|
}
|
|
|
|
return (
|
|
<AuthLayout>
|
|
<Container size={420} className={classes.container}>
|
|
<Box p="xl" className={classes.containerBox}>
|
|
<Title order={2} ta="center" fw={500} mb="md">
|
|
{t("Password reset")}
|
|
</Title>
|
|
|
|
<form onSubmit={form.onSubmit(onSubmit)}>
|
|
<PasswordInput
|
|
label={t("New password")}
|
|
placeholder={t("Your new password")}
|
|
variant="filled"
|
|
mt="md"
|
|
{...form.getInputProps("newPassword")}
|
|
/>
|
|
|
|
<Button type="submit" fullWidth mt="xl" loading={isLoading}>
|
|
{t("Set password")}
|
|
</Button>
|
|
</form>
|
|
</Box>
|
|
</Container>
|
|
</AuthLayout>
|
|
);
|
|
}
|