d7b5988858
Foundation: - CLAUDE.md with full coding rules (tech stack, patterns, redirect rules) - Install @tanstack/react-query, zod, react-hook-form, shadcn/ui deps - CSS variables design system (Tailwind v4 + tw-animate-css) - Shared components: Button, Input, Label, Card, Badge, Separator, Form - PortalLoginShell: two-column login layout (branding left, form right) - PortalNav: shared sidebar nav used by all portals - ReactQueryProvider in root layout - api-client.ts: typed fetch wrapper (no raw fetch in components) Portal isolation: - Sidebar now returns null for all non-chapter routes; portals own their layout - Admin layout: auth guard + PortalNav (slate accent) - Org layout: auth guard + PortalNav (violet accent) - Member layout: server-side cookie check → MemberNav client component - Chapter admin sidebar: PortalNav (blue accent) Login pages (all use react-hook-form + Zod + PortalLoginShell): - /login → defaults next to /search (was /) — fixes redirect bug - /admin/login → replaces /admin - /org/login → replaces /org - /member-login → two-step phone+OTP with proper form validation Portal selector (/) redesigned with accent border-left cards Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
69 lines
2.6 KiB
TypeScript
69 lines
2.6 KiB
TypeScript
'use client';
|
|
|
|
import { useRouter } from 'next/navigation';
|
|
import { useForm } from 'react-hook-form';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { z } from 'zod';
|
|
import { useOrgAdmin } from '../../_lib/org-admin-context';
|
|
import { PortalLoginShell } from '../../_components/portal-login-shell';
|
|
import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from '../../_components/ui/form';
|
|
import { Input } from '../../_components/ui/input';
|
|
import { Button } from '../../_components/ui/button';
|
|
import Link from 'next/link';
|
|
|
|
const schema = z.object({
|
|
email: z.string().email('Enter a valid email'),
|
|
password: z.string().min(1, 'Password is required'),
|
|
});
|
|
type FormValues = z.infer<typeof schema>;
|
|
|
|
export default function OrgLoginPage() {
|
|
const { login } = useOrgAdmin();
|
|
const router = useRouter();
|
|
|
|
const form = useForm<FormValues>({ resolver: zodResolver(schema), defaultValues: { email: '', password: '' } });
|
|
|
|
async function onSubmit(values: FormValues) {
|
|
try {
|
|
await login(values.email, values.password);
|
|
router.replace('/org');
|
|
} catch (err) {
|
|
form.setError('root', { message: err instanceof Error ? err.message : 'Login failed' });
|
|
}
|
|
}
|
|
|
|
return (
|
|
<PortalLoginShell
|
|
title="Organisation Portal"
|
|
subtitle="Manage your chapters, admins and org-wide rules."
|
|
accentClass="bg-violet-600"
|
|
footer={<Link href="/" className="hover:text-foreground transition-colors">← Back to portal selector</Link>}
|
|
>
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
|
<FormField control={form.control} name="email" render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Email</FormLabel>
|
|
<FormControl><Input type="email" placeholder="admin@org.com" autoComplete="username" {...field} /></FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)} />
|
|
<FormField control={form.control} name="password" render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl><Input type="password" autoComplete="current-password" {...field} /></FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)} />
|
|
{form.formState.errors.root && (
|
|
<p className="text-sm text-destructive">{form.formState.errors.root.message}</p>
|
|
)}
|
|
<Button type="submit" className="w-full" disabled={form.formState.isSubmitting}>
|
|
{form.formState.isSubmitting ? 'Signing in…' : 'Sign in'}
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</PortalLoginShell>
|
|
);
|
|
}
|