feat :VerifyOtp and SendOtp creation for "seetings", "send monet", "password expiry" and "set login and tpassword"

This commit is contained in:
2025-10-14 12:11:30 +05:30
parent 242e8d544b
commit f2235818e5
12 changed files with 224 additions and 133 deletions

View File

@@ -48,7 +48,7 @@ export default function Login() {
try {
console.log(CIF);
// await sendOtp({ type: 'LOGIN_OTP', username: CIF, mobileNumber: mobile });
await sendOtp({ type: 'LOGIN_OTP', username: CIF, mobileNumber: '7890544527' });
await sendOtp({ type: 'LOGIN_OTP', username: CIF, mobileNumber: '6297421727' });
return true;
}
catch (err: any) {
@@ -65,7 +65,7 @@ export default function Login() {
try {
if (mobile) {
// await verifyLoginOtp(otp, mobile);
await verifyLoginOtp(otp, '7890544527');
await verifyLoginOtp(otp, '6297421727');
return true;
}
} catch {