gpt-engineer-app[bot] e1fb6c9bd0 Reverted to edit edt-531cfb36-92c8-430d-82fa-c370bdad5948: "Run SQL migrations
The SQL migrations have been reviewed and approved, and are now being run."
2025-03-09 12:38:34 +00:00

195 lines
7.2 KiB
TypeScript

import { useState } from 'react';
import { Navigate } from 'react-router-dom';
import { useAuth } from '@/contexts/AuthContext';
import { ShieldCheck, Mail, Lock, User } from 'lucide-react';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card';
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
const Auth = () => {
const { user, signIn, signUp, loading } = useAuth();
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [fullName, setFullName] = useState('');
const [authError, setAuthError] = useState<string | null>(null);
// If user is already logged in, redirect to home page
if (user) {
return <Navigate to="/dashboard" />;
}
const handleSignIn = async (e: React.FormEvent) => {
e.preventDefault();
setAuthError(null);
try {
await signIn(email, password);
} catch (error: any) {
setAuthError(error.message);
}
};
const handleSignUp = async (e: React.FormEvent) => {
e.preventDefault();
setAuthError(null);
try {
await signUp(email, password, fullName);
} catch (error: any) {
setAuthError(error.message);
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-muted/30 px-4">
<div className="max-w-md w-full">
<div className="text-center mb-8">
<div className="inline-flex mb-6 p-4 bg-primary/10 rounded-full">
<ShieldCheck className="w-8 h-8 text-primary" />
</div>
<h1 className="text-3xl font-bold mb-2">SecuPolicy</h1>
<p className="text-muted-foreground">Sign in to access your account</p>
</div>
<Tabs defaultValue="login" className="w-full">
<TabsList className="grid w-full grid-cols-2 mb-6">
<TabsTrigger value="login">Login</TabsTrigger>
<TabsTrigger value="register">Register</TabsTrigger>
</TabsList>
<TabsContent value="login">
<Card>
<CardHeader>
<CardTitle>Welcome back</CardTitle>
<CardDescription>
Enter your credentials to access your account
</CardDescription>
</CardHeader>
<form onSubmit={handleSignIn}>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<div className="relative">
<Mail className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
id="email"
type="email"
placeholder="name@example.com"
className="pl-10"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<div className="relative">
<Lock className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
id="password"
type="password"
className="pl-10"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
/>
</div>
</div>
{authError && (
<div className="text-sm text-destructive">{authError}</div>
)}
</CardContent>
<CardFooter>
<Button
type="submit"
className="w-full rounded-full"
disabled={loading}
>
{loading ? 'Signing in...' : 'Sign In'}
</Button>
</CardFooter>
</form>
</Card>
</TabsContent>
<TabsContent value="register">
<Card>
<CardHeader>
<CardTitle>Create an account</CardTitle>
<CardDescription>
Enter your details to create your account
</CardDescription>
</CardHeader>
<form onSubmit={handleSignUp}>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="full-name">Full Name</Label>
<div className="relative">
<User className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
id="full-name"
type="text"
placeholder="John Doe"
className="pl-10"
value={fullName}
onChange={(e) => setFullName(e.target.value)}
required
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="register-email">Email</Label>
<div className="relative">
<Mail className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
id="register-email"
type="email"
placeholder="name@example.com"
className="pl-10"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="register-password">Password</Label>
<div className="relative">
<Lock className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
id="register-password"
type="password"
className="pl-10"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
minLength={6}
/>
</div>
</div>
{authError && (
<div className="text-sm text-destructive">{authError}</div>
)}
</CardContent>
<CardFooter>
<Button
type="submit"
className="w-full rounded-full"
disabled={loading}
>
{loading ? 'Creating account...' : 'Create Account'}
</Button>
</CardFooter>
</form>
</Card>
</TabsContent>
</Tabs>
</div>
</div>
);
};
export default Auth;