BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/einui/signup-page

Sign Up Page

einui/signup-page
FreeBlock

A complete sign up page with multi-step validation, password strength indicator, confirm password matching, and terms agreement checkbox.

Install it

npx shadcn@latest add https://ui.eindev.ir/r/signup-page.json

Source

registry/blocks/auth/signup-page.tsxui.eindev.ir/r/signup-page.json · first 6 KB
1"use client"
2
3import { useMemo, useState } from "react"
4import { Eye, EyeOff, UserPlus, Check } from "lucide-react"
5import { GlassCard, GlassCardContent, GlassCardDescription, GlassCardHeader, GlassCardTitle } from "@/registry/liquid-glass/glass-card"
6import { GlassInput } from "@/registry/liquid-glass/glass-input"
7import { GlassButton } from "@/registry/liquid-glass/glass-button"
8import { GlassCheckbox } from "@/registry/liquid-glass/glass-checkbox"
9import { Label } from "@/components/ui/label"
10
11interface ValidationRules {
12 minLength: boolean
13 hasUpperCase: boolean
14 hasLowerCase: boolean
15 hasNumber: boolean
16 hasSpecial: boolean
17}
18
19export default function SignupPageBlock() {
20 const [showPassword, setShowPassword] = useState(false)
21 const [showConfirmPassword, setShowConfirmPassword] = useState(false)
22 const [firstName, setFirstName] = useState("")
23 const [lastName, setLastName] = useState("")
24 const [email, setEmail] = useState("")
25 const [password, setPassword] = useState("")
26 const [confirmPassword, setConfirmPassword] = useState("")
27 const [agreeToTerms, setAgreeToTerms] = useState(false)
28 const [isLoading, setIsLoading] = useState(false)
29
30 const validatePassword = (pwd: string): ValidationRules => ({
31 minLength: pwd.length >= 8,
32 hasUpperCase: /[A-Z]/.test(pwd),
33 hasLowerCase: /[a-z]/.test(pwd),
34 hasNumber: /\d/.test(pwd),
35 hasSpecial: /[!@#$%^&*(),.?":{}|<>]/.test(pwd),
36 })
37
38 const validation = useMemo(() => validatePassword(password), [password])
39 const isPasswordValid = Object.values(validation).every(Boolean)
40 const passwordsMatch = password === confirmPassword && password.length > 0
41
42 const handleSubmit = async (e: React.FormEvent) => {
43 e.preventDefault()
44 if (!isPasswordValid || !passwordsMatch || !agreeToTerms) return
45
46 setIsLoading(true)
47 // Simulate API call
48 await new Promise((resolve) => setTimeout(resolve, 2000))
49 setIsLoading(false)
50 console.log({ firstName, lastName, email, password })
51 }
52
53 return (
54 <div className=" flex items-center justify-center bg-linear-to-br from-slate-950 via-purple-900 to-slate-950 px-4 py-8">
55 <GlassCard className="w-full max-w-md">
56 <GlassCardHeader className="space-y-2 text-center">
57 <div className="flex justify-center mb-2">
58 <div className="p-2 rounded-lg bg-linear-to-br from-green-400 to-emerald-500">
59 <UserPlus className="h-6 w-6 text-white" />
60 </div>
61 </div>
62// … truncated

What it pulls in

npm packages

  • lucide-react

Other registry items

  • https://ui.eindev.ir/r/glass-card.json
  • https://ui.eindev.ir/r/glass-button.json
  • https://ui.eindev.ir/r/glass-input.json
  • https://ui.eindev.ir/r/glass-checkbox.json

Files it writes

  • registry/blocks/auth/signup-page.tsx

Facts

Registry
einui
Type
registry:block
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-09
Last confirmed
today

Go to the source

Docs on einui ui.eindev.ir einui/einui on GitHub Raw registry item This item as JSON

More from einui

All 44 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Admin Paneladmin-paneleinuiBlocksFree1 dep
Forgot Password Pageforgot-password-pageeinuiBlocksFree1 dep
Login Pagelogin-pageeinuiBlocksFree1 dep
Pricing Pagepricing-pageeinuiBlocksFree1 dep

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex