This commit is contained in:
2025-09-02 16:34:32 +05:30
4 changed files with 139 additions and 5 deletions

View File

@@ -18,6 +18,7 @@ export default function ChangePassword() {
const [generatedOtp, setGeneratedOtp] = useState('');
const [otpValidated, setOtpValidated] = useState(false);
const [step, setStep] = useState<"form" | "otp" | "final">("form");
const [passwordHistory] = useState(["Pass@1234", "OldPass@123", "MyPass#2023"]);
const icon = <IconLock size={18} stroke={1.5} />;
const handleGenerateOtp = async () => {
@@ -176,6 +177,7 @@ export default function ChangePassword() {
return (
<Paper shadow="sm" radius="md" p="md" withBorder h={400}>
<Title order={3} style={{ color: "red" }}>More Updates comming soon .....</Title>
<Title order={3} mb="sm">
Change Login Password
</Title>