import { Eye,EyeOff } from "lucide-react"; import FormInput from "@/utils/formInput"; import Button from "@/utils/button"; import { useState } from "react"; import {Props} from "@/constants/types" export default function LoginForm({ onSuccess,onForgotPassword }: Props) { const [showPassword, setShowPassword] = useState(false); return (
{/* Header text container */}

Sign in to your account

Use your registered work credentials.

{/* Field Elements */}
{/* Interactive options row */}
{/* Actions / Submit Stack */}
{/* Custom Visual Divider */}
or
{/* Bottom Legal Info */}

Protected by 2-factor auth • every sign-in is
audit-logged

); }