import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Link, useForm } from "@inertiajs/react"; import { NewUser } from "@/types/NewUser"; export function RegisterForm({ className, ...props }: React.ComponentProps<"div">) { const { data, setData, post, reset } = useForm(); function register() { post(`/register`); reset(); } return (
{ e.preventDefault(); register(); }} >

Register

Create your new account

setData("username", e.currentTarget.value)} />
setData("password", e.currentTarget.value)} />
You have an account?{" "} Login
Image
By clicking continue, you agree to our Terms of Service{" "} and Privacy Policy.
); }