loginFrom.jsx 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. import React from 'react';
  2. import { Form, Icon, Input, Button, Checkbox } from 'antd';
  3. const FormItem = Form.Item;
  4. const LoginForm = Form.create()(React.createClass({
  5. handleSubmit(e) {
  6. e.preventDefault();
  7. this.props.form.validateFields((err, values) => {
  8. if (!err) {
  9. console.log('Received values of form: ', values);
  10. }
  11. });
  12. },
  13. render() {
  14. const { getFieldDecorator } = this.props.form;
  15. return (
  16. <Form onSubmit={this.handleSubmit} className="login-form">
  17. <FormItem>
  18. {getFieldDecorator('userName', {
  19. rules: [{ required: true, message: 'Please input your username!' }],
  20. })(
  21. <div>
  22. <span>用 &nbsp;&nbsp; 户 :</span><Input placeholder="Username" />
  23. </div>
  24. )}
  25. </FormItem>
  26. <FormItem>
  27. {getFieldDecorator('password', {
  28. rules: [{ required: true, message: 'Please input your Password!' }],
  29. })(
  30. <div>
  31. <span>密 &nbsp;&nbsp; 码 :</span><Input type="password" placeholder="Password" />
  32. </div>
  33. )}
  34. </FormItem>
  35. <FormItem>
  36. {getFieldDecorator('remember', {
  37. valuePropName: 'checked',
  38. initialValue: true,
  39. })(
  40. <Checkbox>记住我</Checkbox>
  41. )}
  42. <Button type="primary" htmlType="submit" className="login-form-button">
  43. 登录
  44. </Button>
  45. <p className="reg"><a className="login-form-forgot">忘记密码</a><a>加入我们</a></p>
  46. </FormItem>
  47. </Form>
  48. );
  49. },
  50. }));
  51. export default LoginForm;