import React from "react"; import { Button, Container, FormControl, Heading, Input, Text } from "@chakra-ui/react"; import { SubmitHandler, useForm } from "react-hook-form"; import { LoginService } from "../client"; import useCustomToast from "../hooks/useCustomToast"; interface FormData { email: string; } const RecoverPassword: React.FC = () => { const { register, handleSubmit } = useForm(); const showToast = useCustomToast(); const onSubmit: SubmitHandler = async (data) => { const response = await LoginService.recoverPassword({ email: data.email, }); console.log(response) showToast("Email sent.", "We sent an email with a link to get back into your account.", "success"); }; return ( Password Recovery A password recovery email will be sent to the registered account. ); }; export default RecoverPassword;