139 lines
6.3 KiB
TypeScript
139 lines
6.3 KiB
TypeScript
'use client';
|
|
|
|
import { signIn } from "next-auth/react";
|
|
import { useState } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import { KeyRound, Mail, ArrowRight, ShieldCheck, Loader2 } from "lucide-react";
|
|
|
|
export default function LoginPage() {
|
|
const router = useRouter();
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError("");
|
|
setLoading(true);
|
|
|
|
const res = await signIn("credentials", {
|
|
email,
|
|
password,
|
|
redirect: false,
|
|
});
|
|
|
|
if (res?.error) {
|
|
setError("Zugangsdaten nicht korrekt. Bitte erneut versuchen.");
|
|
setLoading(false);
|
|
} else {
|
|
router.push("/");
|
|
router.refresh();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex relative overflow-hidden bg-slate-50 absolute inset-0 z-50">
|
|
|
|
{/* Background Decor */}
|
|
<div className="absolute top-[-10%] left-[-10%] w-[50%] h-[50%] bg-indigo-200/50 rounded-full mix-blend-multiply filter blur-3xl opacity-70 animate-blob"></div>
|
|
<div className="absolute top-[20%] right-[-10%] w-[40%] h-[50%] bg-purple-200/50 rounded-full mix-blend-multiply filter blur-3xl opacity-70 animate-blob animation-delay-2000"></div>
|
|
<div className="absolute bottom-[-20%] left-[20%] w-[60%] h-[60%] bg-emerald-100/50 rounded-full mix-blend-multiply filter blur-3xl opacity-70 animate-blob animation-delay-4000"></div>
|
|
|
|
<div className="flex-1 flex flex-col justify-center px-4 sm:px-6 lg:flex-none lg:px-20 xl:px-32 relative z-10 w-full lg:w-1/2">
|
|
<div className="mx-auto w-full max-w-sm lg:w-96 animate-slide-up">
|
|
<div className="flex items-center gap-3 mb-8">
|
|
<div className="w-12 h-12 bg-indigo-600 rounded-xl flex items-center justify-center shadow-lg shadow-indigo-200">
|
|
<ShieldCheck className="w-7 h-7 text-white" />
|
|
</div>
|
|
<h2 className="text-3xl font-extrabold text-slate-900 tracking-tight">ERP Pro</h2>
|
|
</div>
|
|
|
|
<div className="bg-white/80 backdrop-blur-xl py-8 px-6 shadow-xl rounded-2xl border border-white">
|
|
<div className="mb-6">
|
|
<h1 className="text-xl font-bold text-slate-900">Willkommen zurück</h1>
|
|
<p className="text-sm text-slate-500 mt-1">Bitte logge dich ein, um fortzufahren.</p>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="mb-6 bg-red-50 text-red-600 p-4 rounded-xl text-sm font-medium border border-red-100 animate-shake">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-5">
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-700 mb-1">E-Mail Adresse</label>
|
|
<div className="relative">
|
|
<div className="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
|
<Mail className="h-5 w-5 text-slate-400" />
|
|
</div>
|
|
<input
|
|
type="email"
|
|
required
|
|
className="block w-full pl-10 pr-3 py-2.5 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-600 focus:border-transparent outline-none bg-slate-50 focus:bg-white transition-all text-sm font-medium"
|
|
placeholder="name@firma.de"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-700 mb-1">Passwort</label>
|
|
<div className="relative">
|
|
<div className="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
|
<KeyRound className="h-5 w-5 text-slate-400" />
|
|
</div>
|
|
<input
|
|
type="password"
|
|
required
|
|
className="block w-full pl-10 pr-3 py-2.5 border border-slate-200 rounded-xl focus:ring-2 focus:ring-indigo-600 focus:border-transparent outline-none bg-slate-50 focus:bg-white transition-all text-sm font-medium"
|
|
placeholder="••••••••"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full flex justify-center items-center gap-2 py-3 px-4 border border-transparent rounded-xl shadow-sm text-sm font-bold text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 transition-all disabled:opacity-70 disabled:cursor-not-allowed group"
|
|
>
|
|
{loading ? (
|
|
<>
|
|
<Loader2 className="w-5 h-5 animate-spin" />
|
|
Anmeldung läuft...
|
|
</>
|
|
) : (
|
|
<>
|
|
Anmelden
|
|
<ArrowRight className="w-4 h-4 group-hover:translate-x-1 transition-transform" />
|
|
</>
|
|
)}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Image / Right Side */}
|
|
<div className="hidden lg:block relative w-0 flex-1">
|
|
<div className="absolute inset-0 h-full w-full bg-slate-900 object-cover overflow-hidden">
|
|
<div className="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1550439062-609e1531270e?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80')] bg-cover bg-center opacity-30 mix-blend-luminosity"></div>
|
|
<div className="absolute inset-0 bg-gradient-to-t from-slate-900/80 to-transparent"></div>
|
|
|
|
<div className="absolute bottom-12 left-12 right-12 text-white">
|
|
<h2 className="text-3xl font-bold mb-4">Effizientes Management für dein Business.</h2>
|
|
<p className="text-slate-300 text-lg max-w-xl">
|
|
Alles an einem Ort: Ticket-Support, Kundenverwaltung und Abrechnungsprozesse nahtlos integriert.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
);
|
|
}
|