summaryrefslogtreecommitdiff
path: root/src/components/settings/SetPasswordField.tsx
diff options
context:
space:
mode:
authorl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-04-29 02:07:46 +0300
committerl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-04-29 02:07:46 +0300
commite619245f1fa83a29a9ec553ef9017871bb5c27c0 (patch)
treed945801c8dd8e2b3d3fd36f962c31f29ead4b690 /src/components/settings/SetPasswordField.tsx
parent42a5d2de33564c060d2d6f3cefdd3cf21c26a996 (diff)
add google auth
Diffstat (limited to 'src/components/settings/SetPasswordField.tsx')
-rw-r--r--src/components/settings/SetPasswordField.tsx76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/components/settings/SetPasswordField.tsx b/src/components/settings/SetPasswordField.tsx
new file mode 100644
index 0000000..6030c8f
--- /dev/null
+++ b/src/components/settings/SetPasswordField.tsx
@@ -0,0 +1,76 @@
+'use client';
+
+import { useState } from 'react';
+import { InputField } from '@/components/ui/inputfield';
+import { Button } from '@/components/ui/button';
+import { Separator } from '@/components/ui/separator';
+import { setPassword } from '@/lib/api/SetPassword';
+
+export const SetPasswordField = () => {
+ const [newPassword, setNewPassword] = useState('');
+ const [repeatPassword, setRepeatPassword] = useState('');
+ const [loading, setLoading] = useState(false);
+ const [error, setError] = useState<string | null>(null);
+
+ const handleSubmit = async () => {
+ setError(null);
+
+ if (newPassword !== repeatPassword) {
+ setError('Пароли не совпадают');
+ return;
+ }
+
+ if (newPassword.length < 8) {
+ setError('Пароль должен быть минимум 8 символов');
+ return;
+ }
+
+ setLoading(true);
+
+ const res = await setPassword(newPassword, repeatPassword);
+
+ setLoading(false);
+
+ if (res.error) {
+ setError(res.error.general);
+ return;
+ }
+
+ setNewPassword('');
+ setRepeatPassword('');
+ };
+
+ return (
+ <div className="flex flex-col gap-[20px] w-[310px]">
+ <p className="text-light-violet font-medium">ЗАДАТЬ ПАРОЛЬ</p>
+
+ <div className="flex flex-col gap-[10px]">
+ <InputField
+ placeholder="Введите пароль"
+ isPassword
+ type="password"
+ name="new_password"
+ value={newPassword}
+ onChange={(e: any) => setNewPassword(e.target.value)}
+ />
+
+ <InputField
+ placeholder="Повторите пароль"
+ isPassword
+ type="password"
+ name="repeat_password"
+ value={repeatPassword}
+ onChange={(e: any) => setRepeatPassword(e.target.value)}
+ />
+ </div>
+
+ {error && <p className="text-red text-sm">{error}</p>}
+
+ <Button onClick={handleSubmit} disabled={loading}>
+ {loading ? 'Сохранение...' : 'Сменить'}
+ </Button>
+
+ <Separator className="bg-violet/30 h-[1px] w-[900px]" />
+ </div>
+ );
+};