diff --git a/Components/Login/LoginForm.tsx b/Components/Login/LoginForm.tsx index d7baead..8ceabc4 100644 --- a/Components/Login/LoginForm.tsx +++ b/Components/Login/LoginForm.tsx @@ -4,7 +4,7 @@ import React from 'react'; import { useForm, SubmitHandler } from 'react-hook-form'; import { fetchLogin } from '../../app/login/login.utils'; import { setCookie } from '@/Components/Login/Cookie'; -import { Button } from '@material-tailwind/react'; +import { Button, Typography } from '@material-tailwind/react'; import Link from 'next/link'; import { useRouter } from 'next/navigation'; import Swal from 'sweetalert2'; @@ -12,6 +12,7 @@ import { Input } from '@material-tailwind/react'; import Image from 'next/image'; import useAsyncLoading from '@/hooks/Open/useAsyncLoading'; import { IFormInput } from './Login.types'; +import icon_cat from '@/public/icon_cat.svg'; const LoginForm = () => { const loadingControl = useAsyncLoading(); @@ -49,12 +50,18 @@ const LoginForm = () => { }; return ( -