Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM, PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source files covering clients, berths, interests/pipeline, documents/EOI, expenses/invoices, email, notifications, dashboard, admin, and client portal. CI/CD via Gitea Actions with Docker builds. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
119 lines
3.7 KiB
TypeScript
119 lines
3.7 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { Mail, Loader2 } from 'lucide-react';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
|
|
export default function PortalLoginPage() {
|
|
const [email, setEmail] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
const [submitted, setSubmitted] = useState(false);
|
|
const [error, setError] = useState('');
|
|
|
|
async function handleSubmit(e: React.FormEvent) {
|
|
e.preventDefault();
|
|
setError('');
|
|
setLoading(true);
|
|
|
|
try {
|
|
const res = await fetch('/api/portal/auth/request', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ email }),
|
|
});
|
|
|
|
if (!res.ok) {
|
|
const data = await res.json().catch(() => ({}));
|
|
setError((data as any).error ?? 'Something went wrong. Please try again.');
|
|
return;
|
|
}
|
|
|
|
setSubmitted(true);
|
|
} catch {
|
|
setError('Unable to connect. Please check your connection and try again.');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}
|
|
|
|
if (submitted) {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 px-4">
|
|
<div className="w-full max-w-md text-center">
|
|
<div className="inline-flex items-center justify-center w-14 h-14 rounded-full bg-green-50 mb-4">
|
|
<Mail className="h-7 w-7 text-green-600" />
|
|
</div>
|
|
<h1 className="text-xl font-semibold text-gray-900 mb-2">Check your email</h1>
|
|
<p className="text-gray-500 text-sm leading-relaxed">
|
|
If <strong>{email}</strong> is associated with a client account, you will receive a
|
|
sign-in link shortly. The link expires in 24 hours.
|
|
</p>
|
|
<button
|
|
type="button"
|
|
onClick={() => { setSubmitted(false); setEmail(''); }}
|
|
className="mt-6 text-sm text-[#1e2844] hover:underline"
|
|
>
|
|
Try a different email
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 px-4">
|
|
<div className="w-full max-w-sm">
|
|
<div className="bg-white rounded-lg border p-8 shadow-sm">
|
|
<div className="text-center mb-6">
|
|
<h1 className="text-xl font-semibold text-gray-900">Client Portal</h1>
|
|
<p className="text-sm text-gray-500 mt-1">
|
|
Enter your email to receive a sign-in link
|
|
</p>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div className="space-y-1.5">
|
|
<Label htmlFor="email">Email address</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="you@example.com"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
required
|
|
autoFocus
|
|
disabled={loading}
|
|
/>
|
|
</div>
|
|
|
|
{error && (
|
|
<p className="text-sm text-red-600">{error}</p>
|
|
)}
|
|
|
|
<Button
|
|
type="submit"
|
|
className="w-full bg-[#1e2844] hover:bg-[#1e2844]/90 text-white"
|
|
disabled={loading || !email}
|
|
>
|
|
{loading ? (
|
|
<>
|
|
<Loader2 className="h-4 w-4 mr-2 animate-spin" />
|
|
Sending link...
|
|
</>
|
|
) : (
|
|
'Send sign-in link'
|
|
)}
|
|
</Button>
|
|
</form>
|
|
</div>
|
|
|
|
<p className="text-center text-xs text-gray-400 mt-4">
|
|
This portal is for existing clients only.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|