feat : implement the quick pay screen

This commit is contained in:
2025-07-19 16:38:11 +05:30
parent f67319762f
commit eae989642b
7 changed files with 482 additions and 211 deletions

10
src/app/OTPGenerator.ts Normal file
View File

@@ -0,0 +1,10 @@
export function generateOTP(length: number) {
const digits = '0123456789';
let otp = '';
otp += digits[Math.floor(Math.random() * 9)+1]; //first digit cannot be zero
for (let i = 1; i < length; i++) {
otp += digits[Math.floor(Math.random() * digits.length)];
}
// console.log("OTP generate :",otp);
return otp;
}