MBO-Tech-IT-Webseite/app/admin/login/page.tsx

110 lines
4.2 KiB
TypeScript

"use client";
import { Suspense, useState } from "react";
import { useRouter, useSearchParams } from "next/navigation";
function isInternalUrl(url: string): boolean {
if (!url.startsWith("/")) return false;
return url.startsWith("/admin/") || url.startsWith("/kunden/");
}
function AdminLoginForm() {
const router = useRouter();
const searchParams = useSearchParams();
const rawFrom = searchParams.get("from");
const from = rawFrom && isInternalUrl(rawFrom) ? rawFrom : "/admin/analytics";
const sessionExpired = searchParams.get("session_expired") === "true";
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [error, setError] = useState(
sessionExpired ? "Ihre Session ist abgelaufen. Bitte melden Sie sich erneut an." : ""
);
const [loading, setLoading] = useState(false);
async function handleSubmit(e: React.FormEvent) {
e.preventDefault();
setError("");
setLoading(true);
const res = await fetch("/api/admin/login", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ email, password }),
});
if (res.ok) {
router.push(from);
} else {
setError("Ungültige Zugangsdaten");
}
setLoading(false);
}
return (
<div className="min-h-screen bg-[#111925] flex items-center justify-center px-4">
<div className="bg-[#18212f] border border-gray-800 rounded-2xl p-8 w-full max-w-sm">
<div className="mb-8">
<div className="w-10 h-10 rounded-xl bg-orange-500/10 border border-orange-500/30 flex items-center justify-center mb-4">
<svg className="w-5 h-5 text-orange-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
</svg>
</div>
<h1 className="text-xl font-bold text-white tracking-tight">Admin · MBO Tech IT</h1>
<p className="text-sm text-slate-500 mt-1">Bitte anmelden</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
<div>
<label htmlFor="email" className="block text-sm font-medium text-slate-400 mb-1.5">E-Mail</label>
<input
id="email"
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
autoComplete="email"
placeholder="admin@mbo-tech-it.de"
required
className="w-full px-4 py-3 rounded-xl bg-[#111925] border border-gray-700 text-white placeholder-slate-600 focus:outline-none focus:border-orange-500/60 focus:ring-1 focus:ring-orange-500/20 transition-colors"
/>
</div>
<div>
<label htmlFor="password" className="block text-sm font-medium text-slate-400 mb-1.5">Passwort</label>
<input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
autoComplete="current-password"
required
className="w-full px-4 py-3 rounded-xl bg-[#111925] border border-gray-700 text-white placeholder-slate-600 focus:outline-none focus:border-orange-500/60 focus:ring-1 focus:ring-orange-500/20 transition-colors"
/>
</div>
{error && (
<p className={`text-sm px-3 py-2 rounded-lg ${sessionExpired ? "text-blue-400 bg-blue-500/10 border border-blue-500/20" : "text-red-400 bg-red-500/10 border border-red-500/20"}`}>
{error}
</p>
)}
<button
type="submit"
disabled={loading}
className="w-full py-3 px-4 bg-orange-500 hover:bg-orange-600 disabled:opacity-60 disabled:cursor-not-allowed text-white font-semibold rounded-xl transition-colors"
>
{loading ? "Wird geprüft…" : "Anmelden"}
</button>
</form>
</div>
</div>
);
}
export default function AdminLoginPage() {
return (
<Suspense>
<AdminLoginForm />
</Suspense>
);
}