GemeindePortal: Full implementation with Apple HIG redesign

- Landing page with large CTAs and seasonal banner
- Multi-step Pool booking wizard with progress bar
- Animated confirmation modals with calendar save
- Wasserzähler flow with large number input and live consumption
- Admin dashboard with today-stats, CSV export, click-to-call
- BookingCalendar with skeleton loading and 44px touch targets
- Cloudflare Turnstile CAPTCHA on pool form
- Supabase auth, RLS, and API routes
- Inline form validation, sticky submit buttons
- Mobile-first responsive design throughout

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Michael
2026-03-02 21:35:32 +01:00
parent 32411cb27f
commit 39eac91568
22 changed files with 2772 additions and 94 deletions

View File

@@ -0,0 +1,108 @@
'use client';
import { useState } from 'react';
import { useRouter } from 'next/navigation';
import { createClient } from '@/lib/supabase/client';
import Header from '@/components/Header';
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 handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setError('');
setLoading(true);
const supabase = createClient();
const { error: authError } = await supabase.auth.signInWithPassword({
email,
password,
});
if (authError) {
setError('Ungültige Anmeldedaten. Bitte versuchen Sie es erneut.');
setLoading(false);
return;
}
router.push('/admin/dashboard');
};
return (
<div className="min-h-screen flex flex-col bg-bg">
<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>
{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}
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>
);
}