summaryrefslogtreecommitdiff
path: root/src/components/header/authdialog/LoginForm.tsx
diff options
context:
space:
mode:
authorl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-17 14:06:58 +0200
committerl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-17 14:06:58 +0200
commit646c1168349643eb01db53b5e06bf986a16b86d7 (patch)
tree1a47fed631b06179383ed75d1bacc3c6b785a974 /src/components/header/authdialog/LoginForm.tsx
parent9edce4dfa5f7c4efecd0f39fb4fd4a4c9863fe6e (diff)
simple registration prototype
Diffstat (limited to 'src/components/header/authdialog/LoginForm.tsx')
-rw-r--r--src/components/header/authdialog/LoginForm.tsx23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/header/authdialog/LoginForm.tsx b/src/components/header/authdialog/LoginForm.tsx
new file mode 100644
index 0000000..c5b606c
--- /dev/null
+++ b/src/components/header/authdialog/LoginForm.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 LoginForm() {
+ return (
+ <>
+ <div className="gap-5 flex flex-col h-[148px] w-[310px]">
+ <Button className="w-full bg-white hover:bg-white hover:text-black">
+ <GoogleIcon />
+ <span className="text-black text-sm">
+ Войти через Google
+ </span>
+ </Button>
+ <div className="gap-[10px] flex-col flex h-[88px]">
+ <InputField placeholder="Никнейм или почта" />
+ <InputField placeholder="Пароль" />
+ </div>
+ </div>
+ <Button className="w-full gap-[10px]">Войти</Button>
+ </>
+ );
+}