145 lines
4.7 KiB
TypeScript
145 lines
4.7 KiB
TypeScript
'use client';
|
|
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { Loader2, Lock, Mail } from 'lucide-react';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useState } from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import * as z from 'zod';
|
|
|
|
import { Button } from '@/components/ui/button';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from '@/components/ui/form';
|
|
import { Input } from '@/components/ui/input';
|
|
import { apiClient } from '@/lib/api-client';
|
|
import { useAuthStore } from '@/lib/auth-store';
|
|
import { toast } from 'sonner';
|
|
|
|
const loginSchema = z.object({
|
|
email: z.string().email('Please enter a valid email address'),
|
|
password: z.string().min(6, 'Password must be at least 6 characters long'),
|
|
});
|
|
|
|
type LoginFormData = z.infer<typeof loginSchema>;
|
|
|
|
export function LoginForm() {
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const { login } = useAuthStore();
|
|
const router = useRouter();
|
|
|
|
const form = useForm<LoginFormData>({
|
|
resolver: zodResolver(loginSchema),
|
|
defaultValues: {
|
|
email: '',
|
|
password: '',
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (data: LoginFormData) => {
|
|
setIsLoading(true);
|
|
try {
|
|
const response = await apiClient.authenticate(data.email, data.password);
|
|
const token = response.data.attributes.token;
|
|
|
|
// Set token in API client
|
|
apiClient.setToken(token);
|
|
|
|
// Set token in auth store
|
|
useAuthStore.setState({ token });
|
|
|
|
// Store in auth state
|
|
login(token, {
|
|
email: data.email,
|
|
});
|
|
|
|
toast.success('Login successful');
|
|
|
|
router.push('/dashboard');
|
|
} catch (error) {
|
|
if(error instanceof Error) {
|
|
toast.error(error.message);
|
|
} else {
|
|
toast.error('Invalid credentials. Please try again.');
|
|
}
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-blue-50 to-indigo-100 px-4">
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader className="space-y-1 text-center">
|
|
<div className="flex items-center justify-center w-12 h-12 mx-auto mb-4 bg-blue-600 rounded-lg">
|
|
<Lock className="w-6 h-6 text-white" />
|
|
</div>
|
|
<CardTitle className="text-2xl font-bold">Keygen Dashboard</CardTitle>
|
|
<CardDescription>
|
|
Sign in to manage your licensing server
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="email"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Email</FormLabel>
|
|
<FormControl>
|
|
<div className="relative">
|
|
<Mail className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
placeholder="admin@example.com"
|
|
className="pl-10"
|
|
{...field}
|
|
/>
|
|
</div>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl>
|
|
<div className="relative">
|
|
<Lock className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
type="password"
|
|
placeholder="Enter your password"
|
|
className="pl-10"
|
|
{...field}
|
|
/>
|
|
</div>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<Button
|
|
type="submit"
|
|
className="w-full"
|
|
disabled={isLoading}
|
|
>
|
|
{isLoading ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Signing in...
|
|
</>
|
|
) : (
|
|
'Sign in'
|
|
)}
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
} |