This component no longer exists. It was in Wednesday UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Field Input Password Demo
wednesday-ui/field-input-password-demoRemovedComponent
A demo of the field input password
Install it
npx shadcn@latest add https://ui.ednesdayw.com/r/field-input-password-demo.jsonSource
1"use client";23import { FieldInput } from "@/components/ui/field-input";4import { useState } from "react";56export const FieldInputPasswordExample = () => {7 const [password, setPassword] = useState("");8 const [confirmPassword, setConfirmPassword] = useState("");910 return (11 <div className="flex flex-col gap-4 w-full max-w-72">12 <FieldInput13 id="password"14 label="Password"15 type="password"16 value={password}17 onChange={(e) => setPassword(e.target.value)}18 />19 <FieldInput20 id="confirm-password"21 label="Confirm Password"22 type="password"23 value={confirmPassword}24 onChange={(e) => setConfirmPassword(e.target.value)}25 />26 </div>27 );28};
What it pulls in
Other registry items
