import React from "react"; import styles from "./index.less"; import { Form, Input, Button, Checkbox } from "antd"; import { UserOutlined, LockOutlined } from "@ant-design/icons"; const NormalLoginForm = () => { const onFinish = (values) => { console.log("Received values of form: ", values); }; return (
} placeholder="Username" /> } type="password" placeholder="Password" /> Remember me Forgot password Or register now!
); }; export default () => (
);