Changeset 3326571
- Timestamp:
- 07/12/2025 02:33:27 AM (8 months ago)
- Location:
- email-otp-authenticator
- Files:
-
- 4 edited
-
tags/6.2.0/lib/emailotpauthn-class.php (modified) (1 diff)
-
tags/6.2.0/lib/emailotpauthn-external-class.php (modified) (1 diff)
-
trunk/lib/emailotpauthn-class.php (modified) (1 diff)
-
trunk/lib/emailotpauthn-external-class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
email-otp-authenticator/tags/6.2.0/lib/emailotpauthn-class.php
r3326025 r3326571 35 35 $formnoticentxt = get_fix_option("emailotpauthn_formnoticentxt","not_initiated"); 36 36 if(strcasecmp($formnoticentxt,"not_initiated")==0){ 37 if(!isset($formtexts) || empty($formtexts)) emailotpauthn_load_notesntexts(); 37 38 if(isset($formtexts) && !empty($formtexts)){ 38 39 $newnoticentxt = ""; -
email-otp-authenticator/tags/6.2.0/lib/emailotpauthn-external-class.php
r3323235 r3326571 3 3 add_action( 'init', 'emailotpauthn_load_textdomain' ); 4 4 function emailotpauthn_load_textdomain() { 5 load_plugin_textdomain( "email-otp-authenticator", false, dirname( dirname( __FILE__ ) ) . "/languages" ); 5 load_plugin_textdomain( "email-otp-authenticator", false, dirname( dirname( __FILE__ ) ) . "/languages" ); 6 emailotpauthn_load_notesntexts(); 6 7 } 7 8 8 global $formtexts; 9 $formtexts = array( 10 array("Reserved Node","Reserved Node",""), //[0] 11 array("Authenticate with OTP","Link Text","Authenticate with OTP"), //[1] 12 array("OTP Verification","Form Titile","OTP Verification"), //[2] 13 array("Send OTP","Button Text","Send OTP"), //[3] 14 array("Verify OTP","Button Text","Verify OTP"), //[4] 15 array("Wrong Action","Settings Notice","Wrong Action"), //[5] 16 array("Enter your email to get the OTP","Label Text","Enter your email to get the OTP"), //[6] 17 array("Get verification OTP at your email {{email address}}","Label Text","Get verification OTP at your email"), //[7] 18 array("Logged in user cannot view or edit their email here.","Warning Notice","Logged in user cannot view or edit their email here."), //[8] 19 array("You have received new OTP to login at {{website title}}","Email Text","You have received new OTP to login at "), //[9] 20 array("We have received a one time password request.","Email Text","We have received a one time password request."), //[10] 21 array("Your new OTP is {{new OTP}}","Email Text","Your new OTP is "), //[11] 22 array("Website: {{your domain}}","Email Text","Website: "), //[12] 23 array("This secure OTP is generated by : {{Email OTP Authenticator}}","Email Text","This secure OTP is generated by : "), //[13] 24 array("Email OTP Authenticator","Email Text","Email OTP Authenticator"), //[14] 25 array("Unacceptable email found. Unable to proceed.","Error Notice","Unacceptable email found. Unable to proceed."), //[15] 26 array("Wrong action for Logged-in user.","Settings Notice","Wrong action for Logged-in user."), //[16] 27 array("Wrong action detected. Report to the admin.","Settings Notice","Wrong action detected. Report to the admin."), //[17] 28 array("Service not activated.","Settings Notice","Service not activated."), //[18] 29 array("Email already exist.","Warning Notice","Email already exist."), //[19] 30 array("Email does not exist.","Warning Notice","Email does not exist."), //[20] 31 array("Request has been cancelled.","Hacking Notice","Request has been cancelled."), //[21] 32 array("Request has been rejected due to security! Please contact to administrator.","Hacking Notice","Request has been rejected due to security! Please contact to administrator."), //[22] 33 array("Validation error","Error Notice","Validation error"), //[23] 34 array("Enter email","Label Text","Enter email"), //[24] 35 array("SEND FROM email id is INACTIVE.","Settings Notice","SEND FROM email id is INACTIVE."), //[25] 36 array("Email does not matched.","Error Notice","Email does not matched."), //[26] 37 array("Resend OTP","Link Text","Resend OTP"), //[27] 38 array("Post insertion failed!, please try again","Website Error","Post insertion failed!, please try again"), //[28] 39 array("Unable to send email. Check SMTP or else.","Website Error","Unable to send email. Check SMTP or else."), //[29] 40 array("Out of Email Limit!, contact to website administrator to reset.","Warning Notice","Out of Email Limit!, contact to website administrator to reset."), //[30] 41 array("Out of Email Limit!, please try again after {{remaining minutes}}","Warning Notice","Out of Email Limit!, please try again after "), //[31] 42 array("{{remaining minutes}} minute.","Warning Notice"," minute."), //[32] 43 array("{{remaining minutes}} minutes.","Warning Notice"," minutes."), //[33] 44 array("OTP has sent on your email.","Action Response","OTP has sent on your email."), //[34] 45 array("OTP does not exist. Retry with new OTP.","Error Notice","OTP does not exist. Retry with new OTP."), //[35] 46 array("User does not matched.","Error Notice","User does not matched."), //[36] 47 array("The domain of your email is BLOCKED.","Warning Notice","The domain of your email is BLOCKED."), //[37] 48 array("The domain of your email is NOT ALLOWED.","Warning Notice","The domain of your email is NOT ALLOWED."), //[38] 49 array("Your email address is BLOCKED.","Warning Notice","Your email address is BLOCKED."), //[39] 50 array("This OTP is expired. Try again with new OTP.","Action Response","This OTP is expired. Try again with new OTP."), //[40] 51 array("Post insertion failed!, Token Key Not Generated.","Plugin Error","Post insertion failed!, Token Key Not Generated."), //[41] 52 array("You have successfully verified","Action Response","You have successfully verified"), //[42] 53 array("OTP Matched","Action Response","OTP Matched"), //[43] 54 array("Error in registration. Report to admin.","Website Error","Error in registration. Report to admin."), //[44] 55 array("Successfully Registered... Please Login.","Action Response","Successfully Registered... Please Login."), //[45] 56 array("You have been Successfully Registered.","Action Response","You have been Successfully Registered."), //[46] 57 array("Registered but Login failed. Try to Login.","Website Error","Registered but Login failed. Try to Login."), //[47] 58 array("You are not agree with our terms.","Warning Notice","You are not agree with our terms."), //[48] 59 array("Not Agree With Terms","Hacking Notice","Not Agree With Terms"), //[49] 60 array("You have successfully logged in","Action Response","You have successfully logged in"), //[50] 61 array("Agree to the terms of use.","Label Text","Agree to the terms of use."), //[51] 62 array("Unable to authenticate","Error Notice","Unable to authenticate"), //[52] 63 array("OTP Matched but unable to process","Plugin Error","OTP Matched but unable to process"), //[53] 64 array("Wrong OTP Attempts Crossed.","Warning Notice","Wrong OTP Attempts Crossed."), //[54] 65 array("OTP does not matched.","Error Notice","OTP does not matched."), //[55] 66 array("Invalid Email","Error Notice","Invalid Email"), //[56] 67 array("Please accept our Terms of Use.","Error Notice","Please accept our Terms of Use."), //[57] 68 array("Check your spam mail and inbox again, then resend OTP.","Warning Notice","Check your spam mail and inbox again, then resend OTP."), //[58] 69 array("Invalid OTP","Error Notice","Invalid OTP"), //[59] 70 array("Agree to the","Label Text","Agree to the"), //[60] 71 array("terms of use","Label Text","terms of use"), //[61] 72 array("Remember my email","Label Text","Remember my email"), //[62] 73 array("Back","Button Text","Back"), //[63] 74 array("Enter 6 digit code sent to your email","Label Text","Enter 6 digit code sent to your email"), //[64] 75 array("<b>Error:</b> Invalid username, email address or incorrect password.","2FA Error Notice","<b>Error:</b> Invalid username, email address or incorrect password."), //[65] 76 ); 9 function emailotpauthn_load_notesntexts() { 10 global $formtexts; 11 $formtexts = array( 12 array("Reserved Node","Reserved Node",""), //[0] 13 array("Authenticate with OTP","Link Text","Authenticate with OTP"), //[1] 14 array("OTP Verification","Form Titile","OTP Verification"), //[2] 15 array("Send OTP","Button Text","Send OTP"), //[3] 16 array("Verify OTP","Button Text","Verify OTP"), //[4] 17 array("Wrong Action","Settings Notice","Wrong Action"), //[5] 18 array("Enter your email to get the OTP","Label Text","Enter your email to get the OTP"), //[6] 19 array("Get verification OTP at your email {{email address}}","Label Text","Get verification OTP at your email"), //[7] 20 array("Logged in user cannot view or edit their email here.","Warning Notice","Logged in user cannot view or edit their email here."), //[8] 21 array("You have received new OTP to login at {{website title}}","Email Text","You have received new OTP to login at "), //[9] 22 array("We have received a one time password request.","Email Text","We have received a one time password request."), //[10] 23 array("Your new OTP is {{new OTP}}","Email Text","Your new OTP is "), //[11] 24 array("Website: {{your domain}}","Email Text","Website: "), //[12] 25 array("This secure OTP is generated by : {{Email OTP Authenticator}}","Email Text","This secure OTP is generated by : "), //[13] 26 array("Email OTP Authenticator","Email Text","Email OTP Authenticator"), //[14] 27 array("Unacceptable email found. Unable to proceed.","Error Notice","Unacceptable email found. Unable to proceed."), //[15] 28 array("Wrong action for Logged-in user.","Settings Notice","Wrong action for Logged-in user."), //[16] 29 array("Wrong action detected. Report to the admin.","Settings Notice","Wrong action detected. Report to the admin."), //[17] 30 array("Service not activated.","Settings Notice","Service not activated."), //[18] 31 array("Email already exist.","Warning Notice","Email already exist."), //[19] 32 array("Email does not exist.","Warning Notice","Email does not exist."), //[20] 33 array("Request has been cancelled.","Hacking Notice","Request has been cancelled."), //[21] 34 array("Request has been rejected due to security! Please contact to administrator.","Hacking Notice","Request has been rejected due to security! Please contact to administrator."), //[22] 35 array("Validation error","Error Notice","Validation error"), //[23] 36 array("Enter email","Label Text","Enter email"), //[24] 37 array("SEND FROM email id is INACTIVE.","Settings Notice","SEND FROM email id is INACTIVE."), //[25] 38 array("Email does not matched.","Error Notice","Email does not matched."), //[26] 39 array("Resend OTP","Link Text","Resend OTP"), //[27] 40 array("Post insertion failed!, please try again","Website Error","Post insertion failed!, please try again"), //[28] 41 array("Unable to send email. Check SMTP or else.","Website Error","Unable to send email. Check SMTP or else."), //[29] 42 array("Out of Email Limit!, contact to website administrator to reset.","Warning Notice","Out of Email Limit!, contact to website administrator to reset."), //[30] 43 array("Out of Email Limit!, please try again after {{remaining minutes}}","Warning Notice","Out of Email Limit!, please try again after "), //[31] 44 array("{{remaining minutes}} minute.","Warning Notice"," minute."), //[32] 45 array("{{remaining minutes}} minutes.","Warning Notice"," minutes."), //[33] 46 array("OTP has sent on your email.","Action Response","OTP has sent on your email."), //[34] 47 array("OTP does not exist. Retry with new OTP.","Error Notice","OTP does not exist. Retry with new OTP."), //[35] 48 array("User does not matched.","Error Notice","User does not matched."), //[36] 49 array("The domain of your email is BLOCKED.","Warning Notice","The domain of your email is BLOCKED."), //[37] 50 array("The domain of your email is NOT ALLOWED.","Warning Notice","The domain of your email is NOT ALLOWED."), //[38] 51 array("Your email address is BLOCKED.","Warning Notice","Your email address is BLOCKED."), //[39] 52 array("This OTP is expired. Try again with new OTP.","Action Response","This OTP is expired. Try again with new OTP."), //[40] 53 array("Post insertion failed!, Token Key Not Generated.","Plugin Error","Post insertion failed!, Token Key Not Generated."), //[41] 54 array("You have successfully verified","Action Response","You have successfully verified"), //[42] 55 array("OTP Matched","Action Response","OTP Matched"), //[43] 56 array("Error in registration. Report to admin.","Website Error","Error in registration. Report to admin."), //[44] 57 array("Successfully Registered... Please Login.","Action Response","Successfully Registered... Please Login."), //[45] 58 array("You have been Successfully Registered.","Action Response","You have been Successfully Registered."), //[46] 59 array("Registered but Login failed. Try to Login.","Website Error","Registered but Login failed. Try to Login."), //[47] 60 array("You are not agree with our terms.","Warning Notice","You are not agree with our terms."), //[48] 61 array("Not Agree With Terms","Hacking Notice","Not Agree With Terms"), //[49] 62 array("You have successfully logged in","Action Response","You have successfully logged in"), //[50] 63 array("Agree to the terms of use.","Label Text","Agree to the terms of use."), //[51] 64 array("Unable to authenticate","Error Notice","Unable to authenticate"), //[52] 65 array("OTP Matched but unable to process","Plugin Error","OTP Matched but unable to process"), //[53] 66 array("Wrong OTP Attempts Crossed.","Warning Notice","Wrong OTP Attempts Crossed."), //[54] 67 array("OTP does not matched.","Error Notice","OTP does not matched."), //[55] 68 array("Invalid Email","Error Notice","Invalid Email"), //[56] 69 array("Please accept our Terms of Use.","Error Notice","Please accept our Terms of Use."), //[57] 70 array("Check your spam mail and inbox again, then resend OTP.","Warning Notice","Check your spam mail and inbox again, then resend OTP."), //[58] 71 array("Invalid OTP","Error Notice","Invalid OTP"), //[59] 72 array("Agree to the","Label Text","Agree to the"), //[60] 73 array("terms of use","Label Text","terms of use"), //[61] 74 array("Remember my email","Label Text","Remember my email"), //[62] 75 array("Back","Button Text","Back"), //[63] 76 array("Enter 6 digit code sent to your email","Label Text","Enter 6 digit code sent to your email"), //[64] 77 array("<b>Error:</b> Invalid username, email address or incorrect password.","2FA Error Notice","<b>Error:</b> Invalid username, email address or incorrect password."), //[65] 78 ); 79 } 77 80 78 81 function emailotpauthn_popup_extrnl_boxscript(){ -
email-otp-authenticator/trunk/lib/emailotpauthn-class.php
r3326025 r3326571 35 35 $formnoticentxt = get_fix_option("emailotpauthn_formnoticentxt","not_initiated"); 36 36 if(strcasecmp($formnoticentxt,"not_initiated")==0){ 37 if(!isset($formtexts) || empty($formtexts)) emailotpauthn_load_notesntexts(); 37 38 if(isset($formtexts) && !empty($formtexts)){ 38 39 $newnoticentxt = ""; -
email-otp-authenticator/trunk/lib/emailotpauthn-external-class.php
r3323235 r3326571 3 3 add_action( 'init', 'emailotpauthn_load_textdomain' ); 4 4 function emailotpauthn_load_textdomain() { 5 load_plugin_textdomain( "email-otp-authenticator", false, dirname( dirname( __FILE__ ) ) . "/languages" ); 5 load_plugin_textdomain( "email-otp-authenticator", false, dirname( dirname( __FILE__ ) ) . "/languages" ); 6 emailotpauthn_load_notesntexts(); 6 7 } 7 8 8 global $formtexts; 9 $formtexts = array( 10 array("Reserved Node","Reserved Node",""), //[0] 11 array("Authenticate with OTP","Link Text","Authenticate with OTP"), //[1] 12 array("OTP Verification","Form Titile","OTP Verification"), //[2] 13 array("Send OTP","Button Text","Send OTP"), //[3] 14 array("Verify OTP","Button Text","Verify OTP"), //[4] 15 array("Wrong Action","Settings Notice","Wrong Action"), //[5] 16 array("Enter your email to get the OTP","Label Text","Enter your email to get the OTP"), //[6] 17 array("Get verification OTP at your email {{email address}}","Label Text","Get verification OTP at your email"), //[7] 18 array("Logged in user cannot view or edit their email here.","Warning Notice","Logged in user cannot view or edit their email here."), //[8] 19 array("You have received new OTP to login at {{website title}}","Email Text","You have received new OTP to login at "), //[9] 20 array("We have received a one time password request.","Email Text","We have received a one time password request."), //[10] 21 array("Your new OTP is {{new OTP}}","Email Text","Your new OTP is "), //[11] 22 array("Website: {{your domain}}","Email Text","Website: "), //[12] 23 array("This secure OTP is generated by : {{Email OTP Authenticator}}","Email Text","This secure OTP is generated by : "), //[13] 24 array("Email OTP Authenticator","Email Text","Email OTP Authenticator"), //[14] 25 array("Unacceptable email found. Unable to proceed.","Error Notice","Unacceptable email found. Unable to proceed."), //[15] 26 array("Wrong action for Logged-in user.","Settings Notice","Wrong action for Logged-in user."), //[16] 27 array("Wrong action detected. Report to the admin.","Settings Notice","Wrong action detected. Report to the admin."), //[17] 28 array("Service not activated.","Settings Notice","Service not activated."), //[18] 29 array("Email already exist.","Warning Notice","Email already exist."), //[19] 30 array("Email does not exist.","Warning Notice","Email does not exist."), //[20] 31 array("Request has been cancelled.","Hacking Notice","Request has been cancelled."), //[21] 32 array("Request has been rejected due to security! Please contact to administrator.","Hacking Notice","Request has been rejected due to security! Please contact to administrator."), //[22] 33 array("Validation error","Error Notice","Validation error"), //[23] 34 array("Enter email","Label Text","Enter email"), //[24] 35 array("SEND FROM email id is INACTIVE.","Settings Notice","SEND FROM email id is INACTIVE."), //[25] 36 array("Email does not matched.","Error Notice","Email does not matched."), //[26] 37 array("Resend OTP","Link Text","Resend OTP"), //[27] 38 array("Post insertion failed!, please try again","Website Error","Post insertion failed!, please try again"), //[28] 39 array("Unable to send email. Check SMTP or else.","Website Error","Unable to send email. Check SMTP or else."), //[29] 40 array("Out of Email Limit!, contact to website administrator to reset.","Warning Notice","Out of Email Limit!, contact to website administrator to reset."), //[30] 41 array("Out of Email Limit!, please try again after {{remaining minutes}}","Warning Notice","Out of Email Limit!, please try again after "), //[31] 42 array("{{remaining minutes}} minute.","Warning Notice"," minute."), //[32] 43 array("{{remaining minutes}} minutes.","Warning Notice"," minutes."), //[33] 44 array("OTP has sent on your email.","Action Response","OTP has sent on your email."), //[34] 45 array("OTP does not exist. Retry with new OTP.","Error Notice","OTP does not exist. Retry with new OTP."), //[35] 46 array("User does not matched.","Error Notice","User does not matched."), //[36] 47 array("The domain of your email is BLOCKED.","Warning Notice","The domain of your email is BLOCKED."), //[37] 48 array("The domain of your email is NOT ALLOWED.","Warning Notice","The domain of your email is NOT ALLOWED."), //[38] 49 array("Your email address is BLOCKED.","Warning Notice","Your email address is BLOCKED."), //[39] 50 array("This OTP is expired. Try again with new OTP.","Action Response","This OTP is expired. Try again with new OTP."), //[40] 51 array("Post insertion failed!, Token Key Not Generated.","Plugin Error","Post insertion failed!, Token Key Not Generated."), //[41] 52 array("You have successfully verified","Action Response","You have successfully verified"), //[42] 53 array("OTP Matched","Action Response","OTP Matched"), //[43] 54 array("Error in registration. Report to admin.","Website Error","Error in registration. Report to admin."), //[44] 55 array("Successfully Registered... Please Login.","Action Response","Successfully Registered... Please Login."), //[45] 56 array("You have been Successfully Registered.","Action Response","You have been Successfully Registered."), //[46] 57 array("Registered but Login failed. Try to Login.","Website Error","Registered but Login failed. Try to Login."), //[47] 58 array("You are not agree with our terms.","Warning Notice","You are not agree with our terms."), //[48] 59 array("Not Agree With Terms","Hacking Notice","Not Agree With Terms"), //[49] 60 array("You have successfully logged in","Action Response","You have successfully logged in"), //[50] 61 array("Agree to the terms of use.","Label Text","Agree to the terms of use."), //[51] 62 array("Unable to authenticate","Error Notice","Unable to authenticate"), //[52] 63 array("OTP Matched but unable to process","Plugin Error","OTP Matched but unable to process"), //[53] 64 array("Wrong OTP Attempts Crossed.","Warning Notice","Wrong OTP Attempts Crossed."), //[54] 65 array("OTP does not matched.","Error Notice","OTP does not matched."), //[55] 66 array("Invalid Email","Error Notice","Invalid Email"), //[56] 67 array("Please accept our Terms of Use.","Error Notice","Please accept our Terms of Use."), //[57] 68 array("Check your spam mail and inbox again, then resend OTP.","Warning Notice","Check your spam mail and inbox again, then resend OTP."), //[58] 69 array("Invalid OTP","Error Notice","Invalid OTP"), //[59] 70 array("Agree to the","Label Text","Agree to the"), //[60] 71 array("terms of use","Label Text","terms of use"), //[61] 72 array("Remember my email","Label Text","Remember my email"), //[62] 73 array("Back","Button Text","Back"), //[63] 74 array("Enter 6 digit code sent to your email","Label Text","Enter 6 digit code sent to your email"), //[64] 75 array("<b>Error:</b> Invalid username, email address or incorrect password.","2FA Error Notice","<b>Error:</b> Invalid username, email address or incorrect password."), //[65] 76 ); 9 function emailotpauthn_load_notesntexts() { 10 global $formtexts; 11 $formtexts = array( 12 array("Reserved Node","Reserved Node",""), //[0] 13 array("Authenticate with OTP","Link Text","Authenticate with OTP"), //[1] 14 array("OTP Verification","Form Titile","OTP Verification"), //[2] 15 array("Send OTP","Button Text","Send OTP"), //[3] 16 array("Verify OTP","Button Text","Verify OTP"), //[4] 17 array("Wrong Action","Settings Notice","Wrong Action"), //[5] 18 array("Enter your email to get the OTP","Label Text","Enter your email to get the OTP"), //[6] 19 array("Get verification OTP at your email {{email address}}","Label Text","Get verification OTP at your email"), //[7] 20 array("Logged in user cannot view or edit their email here.","Warning Notice","Logged in user cannot view or edit their email here."), //[8] 21 array("You have received new OTP to login at {{website title}}","Email Text","You have received new OTP to login at "), //[9] 22 array("We have received a one time password request.","Email Text","We have received a one time password request."), //[10] 23 array("Your new OTP is {{new OTP}}","Email Text","Your new OTP is "), //[11] 24 array("Website: {{your domain}}","Email Text","Website: "), //[12] 25 array("This secure OTP is generated by : {{Email OTP Authenticator}}","Email Text","This secure OTP is generated by : "), //[13] 26 array("Email OTP Authenticator","Email Text","Email OTP Authenticator"), //[14] 27 array("Unacceptable email found. Unable to proceed.","Error Notice","Unacceptable email found. Unable to proceed."), //[15] 28 array("Wrong action for Logged-in user.","Settings Notice","Wrong action for Logged-in user."), //[16] 29 array("Wrong action detected. Report to the admin.","Settings Notice","Wrong action detected. Report to the admin."), //[17] 30 array("Service not activated.","Settings Notice","Service not activated."), //[18] 31 array("Email already exist.","Warning Notice","Email already exist."), //[19] 32 array("Email does not exist.","Warning Notice","Email does not exist."), //[20] 33 array("Request has been cancelled.","Hacking Notice","Request has been cancelled."), //[21] 34 array("Request has been rejected due to security! Please contact to administrator.","Hacking Notice","Request has been rejected due to security! Please contact to administrator."), //[22] 35 array("Validation error","Error Notice","Validation error"), //[23] 36 array("Enter email","Label Text","Enter email"), //[24] 37 array("SEND FROM email id is INACTIVE.","Settings Notice","SEND FROM email id is INACTIVE."), //[25] 38 array("Email does not matched.","Error Notice","Email does not matched."), //[26] 39 array("Resend OTP","Link Text","Resend OTP"), //[27] 40 array("Post insertion failed!, please try again","Website Error","Post insertion failed!, please try again"), //[28] 41 array("Unable to send email. Check SMTP or else.","Website Error","Unable to send email. Check SMTP or else."), //[29] 42 array("Out of Email Limit!, contact to website administrator to reset.","Warning Notice","Out of Email Limit!, contact to website administrator to reset."), //[30] 43 array("Out of Email Limit!, please try again after {{remaining minutes}}","Warning Notice","Out of Email Limit!, please try again after "), //[31] 44 array("{{remaining minutes}} minute.","Warning Notice"," minute."), //[32] 45 array("{{remaining minutes}} minutes.","Warning Notice"," minutes."), //[33] 46 array("OTP has sent on your email.","Action Response","OTP has sent on your email."), //[34] 47 array("OTP does not exist. Retry with new OTP.","Error Notice","OTP does not exist. Retry with new OTP."), //[35] 48 array("User does not matched.","Error Notice","User does not matched."), //[36] 49 array("The domain of your email is BLOCKED.","Warning Notice","The domain of your email is BLOCKED."), //[37] 50 array("The domain of your email is NOT ALLOWED.","Warning Notice","The domain of your email is NOT ALLOWED."), //[38] 51 array("Your email address is BLOCKED.","Warning Notice","Your email address is BLOCKED."), //[39] 52 array("This OTP is expired. Try again with new OTP.","Action Response","This OTP is expired. Try again with new OTP."), //[40] 53 array("Post insertion failed!, Token Key Not Generated.","Plugin Error","Post insertion failed!, Token Key Not Generated."), //[41] 54 array("You have successfully verified","Action Response","You have successfully verified"), //[42] 55 array("OTP Matched","Action Response","OTP Matched"), //[43] 56 array("Error in registration. Report to admin.","Website Error","Error in registration. Report to admin."), //[44] 57 array("Successfully Registered... Please Login.","Action Response","Successfully Registered... Please Login."), //[45] 58 array("You have been Successfully Registered.","Action Response","You have been Successfully Registered."), //[46] 59 array("Registered but Login failed. Try to Login.","Website Error","Registered but Login failed. Try to Login."), //[47] 60 array("You are not agree with our terms.","Warning Notice","You are not agree with our terms."), //[48] 61 array("Not Agree With Terms","Hacking Notice","Not Agree With Terms"), //[49] 62 array("You have successfully logged in","Action Response","You have successfully logged in"), //[50] 63 array("Agree to the terms of use.","Label Text","Agree to the terms of use."), //[51] 64 array("Unable to authenticate","Error Notice","Unable to authenticate"), //[52] 65 array("OTP Matched but unable to process","Plugin Error","OTP Matched but unable to process"), //[53] 66 array("Wrong OTP Attempts Crossed.","Warning Notice","Wrong OTP Attempts Crossed."), //[54] 67 array("OTP does not matched.","Error Notice","OTP does not matched."), //[55] 68 array("Invalid Email","Error Notice","Invalid Email"), //[56] 69 array("Please accept our Terms of Use.","Error Notice","Please accept our Terms of Use."), //[57] 70 array("Check your spam mail and inbox again, then resend OTP.","Warning Notice","Check your spam mail and inbox again, then resend OTP."), //[58] 71 array("Invalid OTP","Error Notice","Invalid OTP"), //[59] 72 array("Agree to the","Label Text","Agree to the"), //[60] 73 array("terms of use","Label Text","terms of use"), //[61] 74 array("Remember my email","Label Text","Remember my email"), //[62] 75 array("Back","Button Text","Back"), //[63] 76 array("Enter 6 digit code sent to your email","Label Text","Enter 6 digit code sent to your email"), //[64] 77 array("<b>Error:</b> Invalid username, email address or incorrect password.","2FA Error Notice","<b>Error:</b> Invalid username, email address or incorrect password."), //[65] 78 ); 79 } 77 80 78 81 function emailotpauthn_popup_extrnl_boxscript(){
Note: See TracChangeset
for help on using the changeset viewer.