158 lines
5.8 KiB
TypeScript

"use client"
import type React from "react"
import { useState } from "react"
import { useRouter } from "next/navigation"
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 { Separator } from "@/components/ui/separator"
import { useToast } from "@/hooks/use-toast"
import { Eye, EyeOff, Mail, Lock, Stethoscope, Loader2 } from "lucide-react"
import Link from "next/link"
interface LoginForm {
email: string
password: string
}
export default function DoctorLogin() {
const [form, setForm] = useState<LoginForm>({ email: "", password: "" })
const [showPassword, setShowPassword] = useState(false)
const [isLoading, setIsLoading] = useState(false)
const router = useRouter()
const { toast } = useToast()
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
setIsLoading(true)
// Simular autenticação
setTimeout(() => {
if (form.email && form.password) {
const doctorData = {
id: "1",
name: "Dr. João Santos",
email: form.email,
phone: "(11) 98888-8888",
cpf: "987.654.321-00",
crm: "CRM/SP 123456",
specialty: "Cardiologia",
department: "Cardiologia",
permissions: ["view_patients", "manage_appointments", "create_reports"],
}
localStorage.setItem("doctorData", JSON.stringify(doctorData))
localStorage.setItem("userType", "doctor")
toast({
title: "Login realizado com sucesso!",
description: "Bem-vindo ao sistema, " + doctorData.name,
})
router.push("/doctor/medicos")
} else {
toast({
title: "Erro no login",
description: "Por favor, preencha todos os campos.",
variant: "destructive",
})
}
setIsLoading(false)
}, 1500)
}
return (
<div className="min-h-screen bg-background flex items-center justify-center p-4">
<Card className="w-full max-w-md shadow-xl border-0 bg-card/80 backdrop-blur-sm">
<CardHeader className="text-center space-y-4 pb-8">
<div className="mx-auto w-16 h-16 bg-green-100 dark:bg-green-900/30 rounded-full flex items-center justify-center">
<Stethoscope className="w-8 h-8 text-green-600 dark:text-green-400" />
</div>
<div>
<CardTitle className="text-2xl font-bold text-foreground">Área do Médico</CardTitle>
<CardDescription className="text-muted-foreground mt-2">Acesse o sistema médico</CardDescription>
</div>
</CardHeader>
<CardContent className="space-y-6">
<form onSubmit={handleSubmit} className="space-y-5">
<div className="space-y-2">
<Label htmlFor="email" className="text-sm font-medium text-foreground">
E-mail
</Label>
<div className="relative">
<Mail className="absolute left-3 top-1/2 transform -translate-y-1/2 text-muted-foreground w-4 h-4" />
<Input
id="email"
type="email"
placeholder="dr.medico@clinica.com"
value={form.email}
onChange={(e) => setForm({ ...form, email: e.target.value })}
className="pl-10 h-11 border-border focus:border-green-500 focus:ring-green-500"
required
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="password" className="text-sm font-medium text-foreground">
Senha
</Label>
<div className="relative">
<Lock className="absolute left-3 top-1/2 transform -translate-y-1/2 text-muted-foreground w-4 h-4" />
<Input
id="password"
type={showPassword ? "text" : "password"}
placeholder="Digite sua senha"
value={form.password}
onChange={(e) => setForm({ ...form, password: e.target.value })}
className="pl-10 pr-10 h-11 border-border focus:border-green-500 focus:ring-green-500"
required
/>
<button
type="button"
onClick={() => setShowPassword(!showPassword)}
className="absolute right-3 top-1/2 transform -translate-y-1/2 text-muted-foreground hover:text-foreground"
>
{showPassword ? <EyeOff className="w-4 h-4" /> : <Eye className="w-4 h-4" />}
</button>
</div>
</div>
<Button
type="submit"
className="w-full h-11 bg-green-600 text-white hover:bg-green-700 dark:bg-green-500 dark:hover:bg-green-600 dark:text-white"
disabled={isLoading}
>
{isLoading ? (
<>
<Loader2 className="w-4 h-4 mr-2 animate-spin" />
Entrando...
</>
) : (
"Entrar"
)}
</Button>
</form>
<div className="relative">
<Separator className="my-6" />
<span className="absolute left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2 bg-card px-3 text-sm text-muted-foreground">
ou
</span>
</div>
<div className="text-center">
<Link href="/" className="text-sm text-green-600 hover:text-green-700 dark:text-green-400 dark:hover:text-green-500 font-medium hover:underline">
Voltar à página inicial
</Link>
</div>
</CardContent>
</Card>
</div>
)
}