306 lines
13 KiB
TypeScript
306 lines
13 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/navigation";
|
|
import { useState, FormEvent } from "react";
|
|
import { motion } from "framer-motion";
|
|
import { Background } from "../../components/background";
|
|
import { PageSchema } from "../../components/page-schema";
|
|
import { SiteFooter } from "../../components/site-footer";
|
|
import { SiteHeader } from "../../components/site-header";
|
|
import { defaultFaqs } from "../../data/faq";
|
|
import { siteInfo } from "../../data/site";
|
|
import { storeAuthTokens } from "@/lib/api";
|
|
|
|
type ApiResponse<T> = {
|
|
data: T;
|
|
meta: { timestamp: string; version: "v1" };
|
|
error: null | { message: string; code?: string };
|
|
};
|
|
|
|
type AuthData = {
|
|
user: { id: string; email: string; fullName?: string };
|
|
accessToken: string;
|
|
refreshToken: string;
|
|
message?: string;
|
|
};
|
|
|
|
const inputClass =
|
|
"block w-full appearance-none rounded-xl border border-border bg-white/90 px-4 py-3 text-foreground placeholder-muted-foreground shadow-sm focus:border-primary focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all";
|
|
|
|
const socialButtonClass =
|
|
"flex w-full items-center justify-center gap-3 rounded-xl border border-border bg-white py-3 px-4 text-sm font-medium text-foreground shadow-sm transition-all hover:shadow-md hover:border-primary/30 focus:outline-none focus:ring-2 focus:ring-primary/20";
|
|
|
|
export default function RegisterPage() {
|
|
const router = useRouter();
|
|
const [fullName, setFullName] = useState("");
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [confirmPassword, setConfirmPassword] = useState("");
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
const [agreeTerms, setAgreeTerms] = useState(false);
|
|
const [status, setStatus] = useState<string>("");
|
|
const [isError, setIsError] = useState(false);
|
|
|
|
const schema = [
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "WebPage",
|
|
name: "LedgerOne Create Account",
|
|
description: "Create a LedgerOne account and start with two free accounts.",
|
|
url: `${siteInfo.url}/register`,
|
|
},
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "FAQPage",
|
|
mainEntity: defaultFaqs.map((item) => ({
|
|
"@type": "Question",
|
|
name: item.question,
|
|
acceptedAnswer: { "@type": "Answer", text: item.answer },
|
|
})),
|
|
},
|
|
];
|
|
|
|
const onSubmit = async (event: FormEvent) => {
|
|
event.preventDefault();
|
|
if (password !== confirmPassword) {
|
|
setStatus("Passwords do not match.");
|
|
setIsError(true);
|
|
return;
|
|
}
|
|
setStatus("Creating account...");
|
|
setIsError(false);
|
|
try {
|
|
const res = await fetch("/api/auth/register", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ email, password, fullName: fullName || undefined }),
|
|
});
|
|
const payload = (await res.json()) as ApiResponse<AuthData>;
|
|
if (!res.ok || payload.error) {
|
|
setStatus(payload.error?.message ?? "Registration failed.");
|
|
setIsError(true);
|
|
return;
|
|
}
|
|
storeAuthTokens({
|
|
accessToken: payload.data.accessToken,
|
|
refreshToken: payload.data.refreshToken,
|
|
user: payload.data.user,
|
|
});
|
|
setStatus("Account created! Redirecting...");
|
|
router.push("/app");
|
|
} catch {
|
|
setStatus("Registration failed. Please try again.");
|
|
setIsError(true);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="page-soft-bg min-h-screen font-sans text-foreground flex flex-col relative overflow-hidden">
|
|
<Background />
|
|
<SiteHeader />
|
|
<main className="relative z-10 flex flex-1 flex-col justify-center px-6 py-12 lg:py-16">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 12 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.4, ease: [0.16, 1, 0.3, 1] }}
|
|
className="w-full max-w-md mx-auto text-center"
|
|
>
|
|
<h1 className="text-2xl font-bold tracking-tight text-foreground sm:text-3xl">
|
|
Create your LedgerOne account
|
|
</h1>
|
|
<p className="mt-2 text-muted-foreground">
|
|
Get AI-powered financial clarity in minutes.
|
|
</p>
|
|
|
|
<div className="mt-8 text-left">
|
|
{/* Social sign up */}
|
|
<div className="mt-8 flex flex-col gap-3">
|
|
<button
|
|
type="button"
|
|
className={socialButtonClass}
|
|
aria-label="Continue with Apple"
|
|
>
|
|
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="currentColor" aria-hidden>
|
|
<path d="M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z" />
|
|
</svg>
|
|
Continue with Apple
|
|
</button>
|
|
<button
|
|
type="button"
|
|
className={socialButtonClass}
|
|
aria-label="Continue with Google"
|
|
>
|
|
<svg className="h-5 w-5" viewBox="0 0 24 24" aria-hidden>
|
|
<path
|
|
fill="#4285F4"
|
|
d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"
|
|
/>
|
|
<path
|
|
fill="#34A853"
|
|
d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"
|
|
/>
|
|
<path
|
|
fill="#FBBC05"
|
|
d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"
|
|
/>
|
|
<path
|
|
fill="#EA4335"
|
|
d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"
|
|
/>
|
|
</svg>
|
|
Continue with Google
|
|
</button>
|
|
</div>
|
|
|
|
<div className="relative my-6">
|
|
<div className="absolute inset-0 flex items-center">
|
|
<div className="w-full border-t border-border" />
|
|
</div>
|
|
<div className="relative flex justify-center text-sm">
|
|
<span className="bg-transparent px-3 text-muted-foreground">or</span>
|
|
</div>
|
|
</div>
|
|
|
|
<form className="space-y-5" onSubmit={onSubmit}>
|
|
<div>
|
|
<label htmlFor="fullName" className="block text-sm font-medium text-foreground mb-1.5">
|
|
Full name
|
|
</label>
|
|
<input
|
|
id="fullName"
|
|
name="fullName"
|
|
type="text"
|
|
autoComplete="name"
|
|
value={fullName}
|
|
onChange={(e) => setFullName(e.target.value)}
|
|
className={inputClass}
|
|
placeholder="Jane Smith"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label htmlFor="email" className="block text-sm font-medium text-foreground mb-1.5">
|
|
Email
|
|
</label>
|
|
<input
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
autoComplete="email"
|
|
required
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className={inputClass}
|
|
placeholder="you@company.com"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label htmlFor="password" className="block text-sm font-medium text-foreground mb-1.5">
|
|
Password
|
|
</label>
|
|
<div className="relative">
|
|
<input
|
|
id="password"
|
|
name="password"
|
|
type={showPassword ? "text" : "password"}
|
|
autoComplete="new-password"
|
|
required
|
|
minLength={8}
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className={`${inputClass} pr-11`}
|
|
placeholder="••••••••"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
className="absolute right-3 top-1/2 -translate-y-1/2 p-1.5 text-muted-foreground hover:text-foreground rounded-lg hover:bg-secondary/50 transition-colors"
|
|
aria-label={showPassword ? "Hide password" : "Show password"}
|
|
>
|
|
{showPassword ? (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878a4.5 4.5 0 106.262 6.262M4 4l16 16" />
|
|
</svg>
|
|
) : (
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
|
</svg>
|
|
)}
|
|
</button>
|
|
</div>
|
|
<p className="mt-1.5 text-xs text-muted-foreground">Minimum 8 characters</p>
|
|
</div>
|
|
<div>
|
|
<label htmlFor="confirmPassword" className="block text-sm font-medium text-foreground mb-1.5">
|
|
Confirm password
|
|
</label>
|
|
<input
|
|
id="confirmPassword"
|
|
name="confirmPassword"
|
|
type={showPassword ? "text" : "password"}
|
|
autoComplete="new-password"
|
|
value={confirmPassword}
|
|
onChange={(e) => setConfirmPassword(e.target.value)}
|
|
className={inputClass}
|
|
placeholder="••••••••"
|
|
/>
|
|
</div>
|
|
<div className="flex items-start gap-3">
|
|
<input
|
|
id="terms"
|
|
name="terms"
|
|
type="checkbox"
|
|
required
|
|
checked={agreeTerms}
|
|
onChange={(e) => setAgreeTerms(e.target.checked)}
|
|
className="mt-1 h-4 w-4 rounded border-border bg-white text-primary focus:ring-2 focus:ring-primary/20 focus:ring-offset-0"
|
|
/>
|
|
<label htmlFor="terms" className="text-sm text-muted-foreground leading-tight">
|
|
I agree to the{" "}
|
|
<Link href="/terms" className="text-primary hover:underline font-medium">
|
|
Terms of Use
|
|
</Link>{" "}
|
|
and{" "}
|
|
<Link href="/privacy-policy" className="text-primary hover:underline font-medium">
|
|
Privacy Policy
|
|
</Link>
|
|
</label>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
className="btn-primary w-full py-3.5 text-base font-semibold transition-all hover:-translate-y-0.5 active:translate-y-0"
|
|
>
|
|
Create account
|
|
</button>
|
|
</form>
|
|
|
|
{status && (
|
|
<div
|
|
className={`mt-5 rounded-xl p-4 ${isError ? "bg-red-500/10 border border-red-500/20" : "bg-primary/10 border border-primary/20"}`}
|
|
>
|
|
<p className={`text-sm font-medium text-center ${isError ? "text-red-600 dark:text-red-400" : "text-foreground"}`}>
|
|
{status}
|
|
</p>
|
|
</div>
|
|
)}
|
|
|
|
</div>
|
|
|
|
<p className="mt-6 text-center text-sm text-muted-foreground">
|
|
Already have an account?{" "}
|
|
<Link href="/login" className="font-semibold text-primary hover:underline">
|
|
Sign in
|
|
</Link>
|
|
</p>
|
|
</motion.div>
|
|
</main>
|
|
|
|
<div className="relative z-10">
|
|
<SiteFooter />
|
|
</div>
|
|
<PageSchema schema={schema} />
|
|
</div>
|
|
);
|
|
}
|