В своем коде реагирования я хочу добавить подтверждение для пароля и электронной почты.Как?
<Col span={12}>
<FormItem>
{getFieldDecorator('Password', {
initialValue: "",
rules: [{
required: true, message: 'Please Input your Password!',
}],
})(
<Input placeholder="Password" />
)}
</FormItem>
</Col>
<Col span={12}>
<FormItem>
{getFieldDecorator('Email', {
initialValue: "",
rules: [{
required: true, message: 'Please Input your Email!',
}],
})(
<Input placeholder="Email" />
)}
</FormItem>
</Col>
Также я хочу скрыть пароль с помощью пуль или чего-либо еще