Files
hoanghapc_nextJs/src/components/customer/ForgotPassword.tsx
2026-02-28 11:59:17 +07:00

40 lines
1.9 KiB
TypeScript

export default function ForgotPasswordPage() {
return (
<div className="customer-page p-10 container">
<div className="p-10" style={{ padding: '20px 0' }}>
<form action="" method="post" encType="multipart/form-data">
<h2 className="text-20 font-600">Bạn quên mật khẩu vào tài khoản?</h2>
<p>Vui lòng nhập đa chỉ email đã đăng với chúng tôi đ tạo mật khẩu mới. Chúng tôi sẽ gửi 1 email vào đa chỉ email cung cấp yêu cầu xác minh trước khi thể tạo mật khẩu mới</p>
<table>
<tbody>
<tr>
<td>Nhập đa chỉ email đăng </td>
<td>
<input
type="text"
size={40}
name="email"
className="bg-white w-full block h-9 rounded-[4px] px-3"
/>
<span className="red d-block"></span>
</td>
</tr>
<tr>
<td />
<td>
<input
type="button"
className="btn-regis text-uppercase bold px-9"
style={{ width: 'auto' }}
defaultValue="Lấy mật khẩu"
/>
</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
)
}