feat(client): add update password

This commit is contained in:
2025-06-27 13:25:25 +05:00
parent 8f3fde623f
commit 1eadd834e3
5 changed files with 28 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
import React from 'react';
import { Form, Input, Button, Typography } from 'antd';
import { Form, Input, Button, Typography, message } from 'antd';
import {
EyeInvisibleOutlined,
EyeTwoTone,
@@ -45,7 +45,11 @@ export default function LoginPage() {
/>
</div>
<Form name="login" onFinish={onFinish} layout="vertical">
<Form
name="login"
onFinish={onFinish}
layout="vertical"
>
<Form.Item
name="login"
rules={[{ required: true, message: 'Введите login' }]}