mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
53 lines
1.2 KiB
TypeScript
53 lines
1.2 KiB
TypeScript
|
import React from 'react';
|
||
|
import { Button, Checkbox, Form, Input } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const onFinish = (values: any) => {
|
||
|
console.log('Success:', values);
|
||
|
};
|
||
|
|
||
|
const onFinishFailed = (errorInfo: any) => {
|
||
|
console.log('Failed:', errorInfo);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Form
|
||
|
name="basic"
|
||
|
labelCol={{ span: 8 }}
|
||
|
wrapperCol={{ span: 16 }}
|
||
|
initialValues={{ remember: true }}
|
||
|
onFinish={onFinish}
|
||
|
onFinishFailed={onFinishFailed}
|
||
|
autoComplete="off"
|
||
|
>
|
||
|
<Form.Item
|
||
|
label="Username"
|
||
|
name="username"
|
||
|
rules={[{ required: true, message: 'Please input your username!' }]}
|
||
|
>
|
||
|
<Input />
|
||
|
</Form.Item>
|
||
|
|
||
|
<Form.Item
|
||
|
label="Password"
|
||
|
name="password"
|
||
|
rules={[{ required: true, message: 'Please input your password!' }]}
|
||
|
>
|
||
|
<Input.Password />
|
||
|
</Form.Item>
|
||
|
|
||
|
<Form.Item name="remember" valuePropName="checked" wrapperCol={{ offset: 8, span: 16 }}>
|
||
|
<Checkbox>Remember me</Checkbox>
|
||
|
</Form.Item>
|
||
|
|
||
|
<Form.Item wrapperCol={{ offset: 8, span: 16 }}>
|
||
|
<Button type="primary" htmlType="submit">
|
||
|
Submit
|
||
|
</Button>
|
||
|
</Form.Item>
|
||
|
</Form>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|