From 9edce4dfa5f7c4efecd0f39fb4fd4a4c9863fe6e Mon Sep 17 00:00:00 2001 From: l3wdfut4pwr l3wdfut4pwr Date: Sat, 31 Jan 2026 20:33:22 +0200 Subject: add register and reset dialogs --- src/components/ui/inputfield.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/components/ui/inputfield.tsx (limited to 'src/components/ui/inputfield.tsx') diff --git a/src/components/ui/inputfield.tsx b/src/components/ui/inputfield.tsx new file mode 100644 index 0000000..40d5206 --- /dev/null +++ b/src/components/ui/inputfield.tsx @@ -0,0 +1,16 @@ +import { Input } from '@/components/ui/input'; + +interface InputFIeldProps { + placeholder: string; +} + +export function InputField({ placeholder }: InputFIeldProps) { + return ( +
+ +
+ ); +} -- cgit v1.3-3-g829e