116 lines
4.7 KiB
TypeScript
116 lines
4.7 KiB
TypeScript
"use client";
|
|
|
|
import { useRouter } from "next/navigation";
|
|
import { useForm } from "react-hook-form";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { useRegister } from "@/modules/admin/hooks";
|
|
import { registerSchema, type RegisterInput } from "@/modules/admin/schemas";
|
|
import { useToast } from "@/hooks/use-toast";
|
|
import Link from "next/link";
|
|
|
|
export default function RegisterPage() {
|
|
const router = useRouter();
|
|
const { toast } = useToast();
|
|
const registerMutation = useRegister();
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
formState: { errors },
|
|
} = useForm<RegisterInput>({
|
|
resolver: zodResolver(registerSchema),
|
|
});
|
|
|
|
const onSubmit = async (data: RegisterInput) => {
|
|
try {
|
|
await registerMutation.mutateAsync(data);
|
|
toast({
|
|
title: "Registration successful",
|
|
description: "You can now login with your credentials",
|
|
});
|
|
router.push("/login");
|
|
} catch (error: any) {
|
|
toast({
|
|
title: "Registration failed",
|
|
description: error.response?.data?.message || "Something went wrong",
|
|
variant: "destructive",
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center bg-gradient-to-br from-background via-background to-primary/5 p-4">
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader className="space-y-1">
|
|
<CardTitle className="text-2xl font-bold text-center bg-gradient-to-r from-primary to-purple-600 bg-clip-text text-transparent">
|
|
Create Account
|
|
</CardTitle>
|
|
<CardDescription className="text-center">
|
|
Register for Admin CSA dashboard access
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="username">Username</Label>
|
|
<Input
|
|
id="username"
|
|
placeholder="ADMIN CSA"
|
|
{...register("username")}
|
|
/>
|
|
{errors.username && (
|
|
<p className="text-sm text-destructive">{errors.username.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="admin@csa.id"
|
|
{...register("email")}
|
|
/>
|
|
{errors.email && (
|
|
<p className="text-sm text-destructive">{errors.email.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
placeholder="••••••••"
|
|
{...register("password")}
|
|
/>
|
|
{errors.password && (
|
|
<p className="text-sm text-destructive">{errors.password.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<Button
|
|
type="submit"
|
|
className="w-full"
|
|
disabled={registerMutation.isPending}
|
|
>
|
|
{registerMutation.isPending ? "Creating account..." : "Create Account"}
|
|
</Button>
|
|
|
|
<p className="text-center text-sm text-muted-foreground">
|
|
Already have an account?{" "}
|
|
<Link href="/login" className="text-primary hover:underline">
|
|
Sign in
|
|
</Link>
|
|
</p>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|