You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.0 KiB
79 lines
2.0 KiB
import { Form as FormAnt, Input, Button } from "antd";
|
|
import { prof } from "../../API/LayoutApi/profile";
|
|
|
|
const ChangePassword = () => {
|
|
const [form] = FormAnt.useForm();
|
|
|
|
const submit = () => {
|
|
form.validateFields().then(async (values) => {
|
|
form.resetFields();
|
|
await prof.changePass(values);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div style={{ width: 500 }}>
|
|
<FormAnt
|
|
form={form}
|
|
layout="horizontal"
|
|
name="form_in_modal"
|
|
initialValues={{ modifier: "public" }}
|
|
>
|
|
<FormAnt.Item
|
|
label="Old Password"
|
|
name="old_password"
|
|
rules={[{ required: true, message: "Your old password!" }]}
|
|
>
|
|
<Input.Password />
|
|
</FormAnt.Item>
|
|
<FormAnt.Item
|
|
name="new_password"
|
|
label="New Password"
|
|
rules={[
|
|
{
|
|
required: true,
|
|
message: "Please input your password!",
|
|
},
|
|
{
|
|
min: 8,
|
|
message: "Password must be at least 8 characters long!",
|
|
},
|
|
]}
|
|
hasFeedback
|
|
>
|
|
<Input.Password />
|
|
</FormAnt.Item>
|
|
<FormAnt.Item
|
|
name="password_confirm"
|
|
label="Confirm Password"
|
|
dependencies={["new_password"]}
|
|
hasFeedback
|
|
rules={[
|
|
{
|
|
required: true,
|
|
message: "Please confirm your password!",
|
|
},
|
|
({ getFieldValue }) => ({
|
|
validator(_, value) {
|
|
if (!value || getFieldValue("new_password") === value) {
|
|
return Promise.resolve();
|
|
}
|
|
return Promise.reject(
|
|
new Error("The new password that you entered do not match!")
|
|
);
|
|
},
|
|
}),
|
|
]}
|
|
>
|
|
<Input.Password />
|
|
</FormAnt.Item>
|
|
</FormAnt>
|
|
<Button onClick={submit} type="primary">
|
|
save
|
|
</Button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ChangePassword;
|