Advertisement
Mark1928

Untitled

Jul 14th, 2020
1,904
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.13 KB | None | 0 0
  1. <Form.Item
  2.                name="relationship"
  3.                rules={[{ required: true, message: 'Vui lòng nhập lại mật khẩu!' }]}
  4.                className="relative"
  5.              >
  6.                 <img
  7.                  src="/Images/authentication-parent.svg"
  8.                  alt=""
  9.                  srcSet=""
  10.                  style={{
  11.                    position: 'absolute',
  12.                    left: '2rem',
  13.                    top: '50%',
  14.                    transform: 'translateY (-50%)',
  15.                    zIndex: 9,
  16.                  }}
  17.                />
  18.                 <Select
  19.                  className="register__form__input-select"
  20.                  style={{ width: '100%' }}
  21.                  defaultValue="parent"
  22.                >
  23.                   <Select.Option value="parent">
  24.                     <Icon type="user" />
  25.                     Phụ huynh
  26.                   </Select.Option>
  27.                   <Select.Option value="kid">
  28.                     <Icon type="user" />
  29.                     Học sinh
  30.                   </Select.Option>
  31.                 </Select>
  32.               </Form.Item>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement