126 lines
3.7 KiB
TypeScript
126 lines
3.7 KiB
TypeScript
"use client";
|
|
|
|
import { useForm } from "react-hook-form";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { z } from "zod";
|
|
import { useRouter } from "next/navigation";
|
|
import Link from "next/link";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardHeader,
|
|
CardTitle,
|
|
CardDescription,
|
|
} from "@/components/ui/card";
|
|
import {
|
|
Form,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormControl,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import { RegisterSchema, registerUser } from "@/lib/api";
|
|
import { useState } from "react";
|
|
|
|
export default function RegisterPage() {
|
|
const router = useRouter();
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const form = useForm<z.infer<typeof RegisterSchema>>({
|
|
resolver: zodResolver(RegisterSchema),
|
|
defaultValues: { username: "", email: "", password: "" },
|
|
});
|
|
|
|
async function onSubmit(values: z.infer<typeof RegisterSchema>) {
|
|
try {
|
|
setError(null);
|
|
await registerUser(values);
|
|
// You can automatically log the user in here or just redirect them
|
|
router.push("/login");
|
|
} catch (err) {
|
|
setError("Username or email may already be taken.");
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Card className="w-full max-w-sm">
|
|
<CardHeader>
|
|
<CardTitle>Create an Account</CardTitle>
|
|
<CardDescription>Enter your details to register.</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
|
{/* ... Form fields for username, email, and password ... */}
|
|
<FormField
|
|
control={form.control}
|
|
name="username"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Username</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="frutiger" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="email"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Email</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="email"
|
|
placeholder="aero@example.com"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl>
|
|
<Input type="password" placeholder="••••••••" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
{error && (
|
|
<p className="text-sm font-medium text-destructive">{error}</p>
|
|
)}
|
|
<Button
|
|
type="submit"
|
|
className="w-full"
|
|
disabled={form.formState.isSubmitting}
|
|
>
|
|
{form.formState.isSubmitting ? "Creating account..." : "Register"}
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
<p className="mt-4 text-center text-sm text-gray-600">
|
|
Already have an account?{" "}
|
|
<Link
|
|
href="/login"
|
|
className="font-medium text-blue-600 hover:underline"
|
|
>
|
|
Login
|
|
</Link>
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|