Block

Signup.

A create-account page with name, email and a password strength meter, a terms checkbox and inline validation errors, beside a short list of what the account includes.

Installation#

$npx lanterncn add signup

This copies the file into components/signup and installs every component it uses. With the shadcn CLI: npx shadcn@latest add httptim/lantern-ui/signup.

Usage#

Render it from any page.

import Signup from "@/components/signup/signup";

export default function Page() {
  return <Signup />;
}