64 lines
2.1 KiB
React
64 lines
2.1 KiB
React
import { useState } from 'react'
|
|
import { useNavigate, Link } from 'react-router-dom'
|
|
import { useAuth } from '@/context/AuthContext'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
|
|
|
|
export function Login() {
|
|
const [email, setEmail] = useState('')
|
|
const [password, setPassword] = useState('')
|
|
const [error, setError] = useState('')
|
|
const { signIn } = useAuth()
|
|
const navigate = useNavigate()
|
|
|
|
async function handleSubmit(e) {
|
|
e.preventDefault()
|
|
setError('')
|
|
const { error } = await signIn(email, password)
|
|
if (error) {
|
|
setError(error.message === 'Invalid login credentials'
|
|
? 'Email ou mot de passe incorrect'
|
|
: error.message)
|
|
} else {
|
|
navigate('/')
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-100">
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader>
|
|
<CardTitle className="text-2xl text-center">Gestion des compétences</CardTitle>
|
|
<p className="text-sm text-gray-500 text-center mt-1">
|
|
Connectez-vous à votre compte
|
|
</p>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<Input
|
|
type="email"
|
|
placeholder="Email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
required
|
|
/>
|
|
<Input
|
|
type="password"
|
|
placeholder="Mot de passe"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
required
|
|
/>
|
|
{error && <p className="text-sm text-red-600">{error}</p>}
|
|
<Button type="submit" className="w-full">Se connecter</Button>
|
|
</form>
|
|
<p className="text-sm text-center mt-4 text-gray-500">
|
|
Pas encore de compte ? <Link to="/register" className="text-blue-600 hover:underline">Créer un compte</Link>
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|