import { Input, Button, Link, Select, SelectItem, DatePicker, } from "@heroui/react"; import { IconMail, IconLock } from "@tabler/icons-react"; import { useState } from "react"; export default function SignupView({ onLogin, email = "", }: { onLogin: () => void; email: string; }) { const [emailValue, setEmailValue] = useState(email); return (

Welcome!

Become a membership today!

} label="Email" type="email" value={emailValue} onValueChange={setEmailValue} />
} label="Password" type="password" /> } label="Confirm password" type="password" />

Already have an account?

{ onLogin(); }} className="text-sm" > Login
); }