diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-17 14:06:58 +0200 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-17 14:06:58 +0200 |
| commit | 646c1168349643eb01db53b5e06bf986a16b86d7 (patch) | |
| tree | 1a47fed631b06179383ed75d1bacc3c6b785a974 /src/components/header/authdialog/ResetForm.tsx | |
| parent | 9edce4dfa5f7c4efecd0f39fb4fd4a4c9863fe6e (diff) | |
simple registration prototype
Diffstat (limited to 'src/components/header/authdialog/ResetForm.tsx')
| -rw-r--r-- | src/components/header/authdialog/ResetForm.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/header/authdialog/ResetForm.tsx b/src/components/header/authdialog/ResetForm.tsx new file mode 100644 index 0000000..42ca1b2 --- /dev/null +++ b/src/components/header/authdialog/ResetForm.tsx @@ -0,0 +1,23 @@ +import { Button } from '@/components/ui/button'; +import GoogleIcon from '../../../../public/icons/google.svg'; +import { InputField } from '@/components/ui/inputfield'; +import { Input } from '@/components/ui/input'; +export default function ResetForm() { + return ( + <> + <div className="flex gap-5 flex-col"> + <div className="flex flex-col w-[310px] gap-5"> + <span className="">ВОССТАНОВЛЕНИЕ ПАРОЛЯ</span> + <div className=" gap-2.5 flex flex-col"> + <span className="text-sm"> + Введите никнейм или почту, с помощью которых входите + в аккаунт. + </span> + <InputField placeholder="Никнейм или почта"></InputField> + </div> + </div> + <Button className="w-full">Восстановить</Button> + </div> + </> + ); +} |
