Use shadcn login-01 / signup-03 card blocks (no animation)

Add the shadcn login-01 and signup-03 blocks (with the base-luma field/label
components) and wire their forms to the Better Auth client: login →
signIn.email, signup → signUp.email (12-char rule, confirm match), with error
+ submitting states. Dropped the non-functional "Login with Google" button.

Render the block forms from the existing (auth)/login and (auth)/signup pages
(deleting the blocks' duplicate app/login + app/signup routes). Replace the
animated AuthShell with a static, card-based shell + brand header so
onboarding/verify/reset/accept-invite match. Drop the unsupported `eslint`
key from next.config.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Claude
2026-06-02 22:22:58 +03:00
parent cb427801ff
commit 448159873e
8 changed files with 592 additions and 343 deletions
+5 -88
View File
@@ -1,93 +1,10 @@
"use client";
import Link from "next/link";
import { useRouter } from "next/navigation";
import { type FormEvent, useState } from "react";
import { AuthShell, Field, FormAlert } from "@/components/auth/auth-ui";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { authClient } from "@/lib/auth-client";
import { AuthLayout } from "@/components/auth/auth-ui";
import { LoginForm } from "@/components/login-form";
export default function LoginPage() {
const router = useRouter();
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [error, setError] = useState<string | null>(null);
const [submitting, setSubmitting] = useState(false);
const onSubmit = async (event: FormEvent) => {
event.preventDefault();
if (submitting) return;
setSubmitting(true);
setError(null);
const { error: err } = await authClient.signIn.email({
email: email.trim(),
password,
callbackURL: `${window.location.origin}/`,
});
if (err) {
setError(
err.message ??
"Could not sign in. Check your email and password and try again."
);
setSubmitting(false);
return;
}
router.push("/");
};
return (
<AuthShell
footer={
<>
New to temetro?{" "}
<Link className="text-foreground hover:underline" href="/signup">
Create an account
</Link>
</>
}
subtitle="Sign in to your clinician account"
title="Welcome back"
>
<form className="flex flex-col gap-4" onSubmit={onSubmit}>
{error && <FormAlert>{error}</FormAlert>}
<Field htmlFor="email" label="Email">
<Input
autoComplete="email"
id="email"
onChange={(e) => setEmail(e.target.value)}
placeholder="you@clinic.org"
required
type="email"
value={email}
/>
</Field>
<Field htmlFor="password" label="Password">
<Input
autoComplete="current-password"
id="password"
onChange={(e) => setPassword(e.target.value)}
placeholder="••••••••••••"
required
type="password"
value={password}
/>
</Field>
<div className="-mt-1 text-right">
<Link
className="text-xs text-muted-foreground hover:text-foreground hover:underline"
href="/forgot-password"
>
Forgot password?
</Link>
</div>
<Button className="mt-1 w-full" disabled={submitting} type="submit">
{submitting ? "Signing in…" : "Sign in"}
</Button>
</form>
</AuthShell>
<AuthLayout>
<LoginForm />
</AuthLayout>
);
}
+5 -119
View File
@@ -1,124 +1,10 @@
"use client";
import Link from "next/link";
import { useRouter } from "next/navigation";
import { type FormEvent, useState } from "react";
import { AuthShell, Field, FormAlert } from "@/components/auth/auth-ui";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { authClient } from "@/lib/auth-client";
const MIN_PASSWORD = 12;
import { AuthLayout } from "@/components/auth/auth-ui";
import { SignupForm } from "@/components/signup-form";
export default function SignupPage() {
const router = useRouter();
const [name, setName] = useState("");
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [confirm, setConfirm] = useState("");
const [error, setError] = useState<string | null>(null);
const [submitting, setSubmitting] = useState(false);
const onSubmit = async (event: FormEvent) => {
event.preventDefault();
if (submitting) return;
setError(null);
if (password.length < MIN_PASSWORD) {
setError(`Password must be at least ${MIN_PASSWORD} characters.`);
return;
}
if (password !== confirm) {
setError("Passwords do not match.");
return;
}
setSubmitting(true);
const { error: err } = await authClient.signUp.email({
name: name.trim(),
email: email.trim(),
password,
callbackURL: `${window.location.origin}/verify-email`,
});
if (err) {
setError(err.message ?? "Could not create your account.");
setSubmitting(false);
return;
}
// Email verification isn't enforced yet (see backend auth config), so the
// user is signed in on sign-up — go straight to clinic onboarding. A
// verification email is still sent for when verification is re-enabled.
router.push("/");
};
return (
<AuthShell
footer={
<>
Already have an account?{" "}
<Link className="text-foreground hover:underline" href="/login">
Sign in
</Link>
</>
}
subtitle="Start using temetro in your clinic"
title="Create your account"
>
<form className="flex flex-col gap-4" onSubmit={onSubmit}>
{error && <FormAlert>{error}</FormAlert>}
<Field htmlFor="name" label="Full name">
<Input
autoComplete="name"
id="name"
onChange={(e) => setName(e.target.value)}
placeholder="Dr. Jane Okafor"
required
value={name}
/>
</Field>
<Field htmlFor="email" label="Email">
<Input
autoComplete="email"
id="email"
onChange={(e) => setEmail(e.target.value)}
placeholder="you@clinic.org"
required
type="email"
value={email}
/>
</Field>
<Field
hint={`At least ${MIN_PASSWORD} characters.`}
htmlFor="password"
label="Password"
>
<Input
autoComplete="new-password"
id="password"
onChange={(e) => setPassword(e.target.value)}
placeholder="••••••••••••"
required
type="password"
value={password}
/>
</Field>
<Field htmlFor="confirm" label="Confirm password">
<Input
autoComplete="new-password"
id="confirm"
onChange={(e) => setConfirm(e.target.value)}
placeholder="••••••••••••"
required
type="password"
value={confirm}
/>
</Field>
<Button className="mt-1 w-full" disabled={submitting} type="submit">
{submitting ? "Creating account…" : "Create account"}
</Button>
</form>
</AuthShell>
<AuthLayout>
<SignupForm />
</AuthLayout>
);
}