- Wasserzähler-Stammdaten Import (Drag & Drop Excel/CSV) - QR-Code Druckseite mit Browser-Vorschau - QR-Code Excel Download (ExcelJS, eingebettete QR-PNGs) - Serienbrief wie Vorlage wasserablesung.pdf - HTML-Vorschau (max 20) + PDF Download (PDFKit, 1000+ skalierbar) - Antwortkarte mit QR-Code, Briefmarke, Zählerdaten - Bürgerseite: nur Kundennr./Zählernr./Stand (Datenschutz) - Kundennummer + letzter_stand + letzte_ablesung zum Schema - Bürgermeister: Patrick Krutzler - CAPTCHA verify API Route Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
191 lines
6.7 KiB
TypeScript
191 lines
6.7 KiB
TypeScript
'use client';
|
|
|
|
import { useState, useCallback, useRef, useEffect } from 'react';
|
|
import { useRouter } from 'next/navigation';
|
|
import Script from 'next/script';
|
|
import { createClient } from '@/lib/supabase/client';
|
|
import Header from '@/components/Header';
|
|
|
|
declare global {
|
|
interface Window {
|
|
turnstile?: {
|
|
render: (container: string | HTMLElement, options: {
|
|
sitekey: string;
|
|
callback: (token: string) => void;
|
|
'expired-callback': () => void;
|
|
'error-callback': () => void;
|
|
theme?: 'light' | 'dark' | 'auto';
|
|
language?: string;
|
|
}) => string;
|
|
reset: (widgetId: string) => void;
|
|
};
|
|
}
|
|
}
|
|
|
|
export default function AdminLoginPage() {
|
|
const router = useRouter();
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useState('');
|
|
const [captchaToken, setCaptchaToken] = useState('');
|
|
const [turnstileReady, setTurnstileReady] = useState(false);
|
|
const turnstileWidgetId = useRef<string | null>(null);
|
|
const turnstileContainerRef = useRef<HTMLDivElement>(null);
|
|
|
|
const renderTurnstile = useCallback(() => {
|
|
if (window.turnstile && turnstileContainerRef.current && !turnstileWidgetId.current) {
|
|
turnstileWidgetId.current = window.turnstile.render(turnstileContainerRef.current, {
|
|
sitekey: process.env.NEXT_PUBLIC_TURNSTILE_SITE_KEY || '',
|
|
callback: (token: string) => setCaptchaToken(token),
|
|
'expired-callback': () => setCaptchaToken(''),
|
|
'error-callback': () => setCaptchaToken(''),
|
|
theme: 'light',
|
|
language: 'de',
|
|
});
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (turnstileReady) {
|
|
const timer = setTimeout(renderTurnstile, 100);
|
|
return () => clearTimeout(timer);
|
|
}
|
|
}, [turnstileReady, renderTurnstile]);
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError('');
|
|
|
|
if (!captchaToken) {
|
|
setError('Bitte bestätigen Sie das CAPTCHA.');
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
|
|
// CAPTCHA serverseitig verifizieren
|
|
try {
|
|
const verifyRes = await fetch('/api/verify-captcha', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ captchaToken }),
|
|
});
|
|
|
|
if (!verifyRes.ok) {
|
|
setError('CAPTCHA-Verifizierung fehlgeschlagen. Bitte versuchen Sie es erneut.');
|
|
setCaptchaToken('');
|
|
if (turnstileWidgetId.current && window.turnstile) {
|
|
window.turnstile.reset(turnstileWidgetId.current);
|
|
}
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
} catch {
|
|
setError('Verbindungsfehler. Bitte versuchen Sie es erneut.');
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
const supabase = createClient();
|
|
const { error: authError } = await supabase.auth.signInWithPassword({
|
|
email,
|
|
password,
|
|
});
|
|
|
|
if (authError) {
|
|
setError('Ungültige Anmeldedaten. Bitte versuchen Sie es erneut.');
|
|
setCaptchaToken('');
|
|
if (turnstileWidgetId.current && window.turnstile) {
|
|
window.turnstile.reset(turnstileWidgetId.current);
|
|
}
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
|
|
router.push('/admin/dashboard');
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex flex-col bg-bg">
|
|
<Script
|
|
src="https://challenges.cloudflare.com/turnstile/v0/api.js"
|
|
strategy="afterInteractive"
|
|
onReady={() => setTurnstileReady(true)}
|
|
/>
|
|
<Header back={{ href: '/', label: 'Zurück' }} />
|
|
<main className="flex-1 flex items-center justify-center px-4 py-12">
|
|
<div className="bg-white rounded-2xl border border-border shadow-sm p-8 max-w-sm w-full animate-slide-up">
|
|
<div className="text-center mb-6">
|
|
<div className="w-14 h-14 bg-primary/10 rounded-2xl flex items-center justify-center mx-auto mb-3">
|
|
<svg className="w-7 h-7 text-primary" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.5} d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
|
</svg>
|
|
</div>
|
|
<h2 className="text-xl font-bold text-primary">Mitarbeiter-Login</h2>
|
|
<p className="text-text-muted text-sm mt-1">
|
|
Zugang für Gemeindemitarbeiter
|
|
</p>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div>
|
|
<label htmlFor="email" className="block text-sm font-medium mb-1.5">E-Mail</label>
|
|
<input
|
|
id="email"
|
|
type="email"
|
|
inputMode="email"
|
|
value={email}
|
|
onChange={(e) => { setEmail(e.target.value); setError(''); }}
|
|
autoComplete="email"
|
|
required
|
|
className="w-full border border-border rounded-xl px-4 py-3 text-base"
|
|
placeholder="mitarbeiter@gemeinde.at"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label htmlFor="password" className="block text-sm font-medium mb-1.5">Passwort</label>
|
|
<input
|
|
id="password"
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => { setPassword(e.target.value); setError(''); }}
|
|
autoComplete="current-password"
|
|
required
|
|
className="w-full border border-border rounded-xl px-4 py-3 text-base"
|
|
/>
|
|
</div>
|
|
|
|
{/* Turnstile CAPTCHA */}
|
|
<div ref={turnstileContainerRef} className="flex justify-center" />
|
|
|
|
{error && (
|
|
<div className="p-3 bg-danger/5 border border-danger/20 rounded-xl text-danger text-sm">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading || !captchaToken}
|
|
className="w-full bg-primary text-white py-3.5 rounded-xl font-semibold hover:bg-primary-light active:scale-[0.98] transition-all disabled:opacity-50"
|
|
>
|
|
{loading ? (
|
|
<span className="flex items-center justify-center gap-2">
|
|
<svg className="w-4 h-4 animate-spin" fill="none" viewBox="0 0 24 24">
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4" />
|
|
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8v4a4 4 0 00-4 4H4z" />
|
|
</svg>
|
|
Anmeldung...
|
|
</span>
|
|
) : (
|
|
'Anmelden'
|
|
)}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|