BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/formscn/onboarding-wizard-form

onboarding-wizard-form

formscn/onboarding-wizard-form
FreeBlock

Multi-step user onboarding wizard

Install it

npx shadcn@latest add https://formscn.space/r/onboarding-wizard-form.json

Source

src/registry/default/templates/onboarding-wizard-form.tsxformscn.space/r/onboarding-wizard-form.json · first 6 KB
1"use client";
2
3import { useState } from "react";
4import { useForm, Controller } from "react-hook-form";
5import { zodResolver } from "@hookform/resolvers/zod";
6import * as z from "zod";
7import { Button } from "@/components/ui/button";
8import { Card, CardContent, CardDescription, CardHeader, CardTitle, CardFooter } from "@/components/ui/card";
9import { Input } from "@/components/ui/input";
10import { Label } from "@/components/ui/label";
11import { toast } from "sonner";
12import { cn } from "@/lib/utils";
13import { Progress } from "@/components/ui/progress";
14import { Textarea } from "@/components/ui/textarea";
15import {
16 Select,
17 SelectContent,
18 SelectItem,
19 SelectTrigger,
20 SelectValue,
21} from "@/components/ui/select";
22import { Checkbox } from "@/components/ui/checkbox";
23
24const formSchema = z.object({
25 email: z.string().email("Invalid email address").min(1, "Email Address is required"),
26 password: z.string().min(1, "Password is required"),
27 fullName: z.string().min(1, "Full Name is required"),
28 bio: z.string().optional().or(z.literal("")),
29 website: z.string().optional().or(z.literal("")),
30 theme: z.enum(["light", "dark", "system"]),
31 notifications: z.boolean(),
32});
33
34type FormValues = z.infer<typeof formSchema>;
35
36export function OnboardingWizardForm() {
37 const [currentStep, setCurrentStep] = useState(0);
38 const steps = [
39 {
40 "id": "account",
41 "title": "Account",
42 "description": "Create your secure account",
43 "fields": [
44 "email",
45 "password"
46 ]
47 },
48 {
49 "id": "profile",
50 "title": "Profile",
51 "description": "Tell us about yourself",
52 "fields": [
53 "fullName",
54 "bio",
55 "website"
56 ]
57 },
58 {
59 "id": "preferences",
60 "title": "Preferences",
61 "description": "Customize your experience",
62 "fields": [
63 "theme",
64 "notifications"
65 ]
66 }
67];
68
69 const form = useForm<FormValues>({
70 resolver: zodResolver(formSchema),
71 defaultValues: {
72 email: "",
73 password: "",
74 fullName: "",
75 bio: "",
76 website: "",
77 theme: "system",
78 notifications: false,
79 },
80 mode: "onChange",
81 });
82
83 const onSubmit = async (data: FormValues) => {
84 console.log("Form submitted:", data);
85 toast.success("Form submitted successfully!");
86 };
87
88 const nextStep = async () => {
89 const fields = steps[currentStep].fields;
90 const output = await form.trigger(fields as any);
91 if (output) {
92 setCurrentStep((prev) => Math.min(prev + 1, steps.length - 1));
93 }
94 };
95// … truncated

What it pulls in

npm packages

  • react-hook-form
  • @hookform/resolvers
  • zod
  • sonner

Other registry items

  • https://formscn.space/r/button.json
  • https://formscn.space/r/card.json
  • https://formscn.space/r/input.json
  • https://formscn.space/r/textarea.json
  • https://formscn.space/r/label.json
  • https://formscn.space/r/select.json
  • https://formscn.space/r/checkbox.json

Files it writes

  • src/registry/default/templates/onboarding-wizard-form.tsx

Facts

Registry
formscn
Type
registry:block
Access
Free
Files written
1
Licence
the repository states none
In the index
at or before 2026-08-05
Last confirmed
today

Go to the source

formscn.space AbdullahMukadam/formscn on GitHub Raw registry item This item as JSON

More from formscn

All 30 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
base-formbase-formformscnBlocksFree2 deps
booking-request-formbooking-request-formformscnBlocksFree4 deps
contact-formcontact-formformscnBlocksFree4 deps
detailed-application-formdetailed-application-formformscnBlocksFree6 deps
ecommerce-checkout-formecommerce-checkout-formformscnBlocksFree4 deps
event-registration-formevent-registration-formformscnBlocksFree4 deps
feedback-formfeedback-formformscnBlocksFree4 deps
job-application-formjob-application-formformscnBlocksFree6 deps

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