brackt/app/routes/register.tsx
Chris Parsons 2ced7f3ebf Add email verification for email/password signups
New email/password accounts must verify before signing in. Social login
users (Google, Discord) are unaffected. Existing users are grandfathered
via an idempotent migration. Adds a /check-email interstitial with a
resend button, and a --success CSS token for consistent styling.

Closes #343

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 23:53:13 -07:00

129 lines
4.8 KiB
TypeScript

import { useState } from "react";
import { Link, useSearchParams, redirect } from "react-router";
import { auth } from "~/lib/auth.server";
import { authClient } from "~/lib/auth-client";
import type { Route } from "./+types/register";
import { Button } from "~/components/ui/button";
import { Input } from "~/components/ui/input";
import { Label } from "~/components/ui/label";
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "~/components/ui/card";
export function meta(): Route.MetaDescriptors {
return [{ title: "Create Account - Brackt" }];
}
function safeRedirectTo(value: string | null): string {
if (!value) return "/";
return value.startsWith("/") && !value.startsWith("//") ? value : "/";
}
export async function loader(args: Route.LoaderArgs) {
const session = await auth.api.getSession({ headers: args.request.headers });
if (session) {
const raw = new URL(args.request.url).searchParams.get("redirectTo");
return redirect(safeRedirectTo(raw));
}
return {};
}
export default function RegisterPage() {
const [searchParams] = useSearchParams();
const redirectTo = safeRedirectTo(searchParams.get("redirectTo"));
const [error, setError] = useState<string | null>(null);
const [loading, setLoading] = useState(false);
async function handleRegister(e: React.FormEvent<HTMLFormElement>) {
e.preventDefault();
setError(null);
setLoading(true);
const form = e.currentTarget;
const name = (form.elements.namedItem("name") as HTMLInputElement).value;
const email = (form.elements.namedItem("email") as HTMLInputElement).value;
const password = (form.elements.namedItem("password") as HTMLInputElement).value;
const { error: signUpError } = await authClient.signUp.email({
name,
email,
password,
callbackURL: redirectTo,
});
if (signUpError) {
setError(signUpError.message ?? "Registration failed. Please try again.");
setLoading(false);
} else {
const params = new URLSearchParams({ email, redirectTo });
window.location.href = `/check-email?${params.toString()}`;
}
}
async function handleSocialSignIn(provider: "google" | "discord") {
await authClient.signIn.social({ provider, callbackURL: redirectTo });
}
return (
<div className="min-h-screen flex items-center justify-center p-4">
<Card className="w-full max-w-md">
<CardHeader className="space-y-1">
<CardTitle className="text-2xl">Create account</CardTitle>
<CardDescription>Get started with Brackt</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Button
variant="outline"
className="w-full"
onClick={() => handleSocialSignIn("google")}
type="button"
>
Continue with Google
</Button>
<Button
variant="outline"
className="w-full"
onClick={() => handleSocialSignIn("discord")}
type="button"
>
Continue with Discord
</Button>
</div>
<div className="relative">
<div className="absolute inset-0 flex items-center">
<span className="w-full border-t border-border" />
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="bg-background px-2 text-muted-foreground">or</span>
</div>
</div>
<form onSubmit={handleRegister} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="name">Display Name</Label>
<Input id="name" name="name" type="text" required autoComplete="name" />
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input id="email" name="email" type="email" required autoComplete="email" />
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input id="password" name="password" type="password" required autoComplete="new-password" minLength={8} />
</div>
{error && <p className="text-sm text-destructive">{error}</p>}
<Button type="submit" className="w-full" disabled={loading}>
{loading ? "Creating account…" : "Create Account"}
</Button>
</form>
<p className="text-center text-sm text-muted-foreground">
Already have an account?{" "}
<Link to={`/login?redirectTo=${encodeURIComponent(redirectTo)}`} className="underline">
Sign in
</Link>
</p>
</CardContent>
</Card>
</div>
);
}