diff --git a/src/ui/page/login/LoginPage.tsx b/src/ui/page/login/LoginPage.tsx index dd67b5b..4bf8a82 100644 --- a/src/ui/page/login/LoginPage.tsx +++ b/src/ui/page/login/LoginPage.tsx @@ -1,16 +1,15 @@ import { Card, CardContent, CardHeader, CardFooter } from '@/components/ui/card'; import { LoginSchema } from '@/data/form'; -import { Field, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator } from '@/components/ui/field'; +import { Field, FieldError, FieldLabel } from '@/components/ui/field'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { zodResolver } from '@hookform/resolvers/zod'; -import { useState, useCallback } from 'react'; +import { useCallback } from 'react'; import { Controller, useForm } from 'react-hook-form'; import { useNavigate } from 'react-router-dom'; import { PageRouting } from '@/data/RoutingData'; import * as z from 'zod'; import { Separator } from '@/components/ui/separator'; -import { Label } from '@/components/ui/label'; export default function LoginPage() { const navigate = useNavigate(); @@ -31,6 +30,10 @@ export default function LoginPage() { navigate(PageRouting["RESET_PASSWORD"].path); }, []); + const login = async () => { + + } + const TextSeparator = ({ text }: { text: string }) => { return (