+
{t('password')}
- {isInputFocused &&
- signformState.signPassword.length < 8 && (
-
+ {isInputFocused ? (
+ signformState.signPassword.length < 6 ? (
+
+
+
+
+
+ {t('atleast_6_char_long')}
+
+
+ ) : (
+
+
+
+
+ {t('atleast_6_char_long')}
+
+ )
+ ) : null}
+
+ {!isInputFocused &&
+ signformState.signPassword.length > 0 &&
+ signformState.signPassword.length < 6 && (
+
+
+
+
+ {t('atleast_6_char_long')}
+
+ )}
+ {isInputFocused && (
+
- {t('atleast_8_char_long')}
-
+ {showAlert.lowercaseChar ? (
+
+
+
+ ) : (
+
+
+
+ )}
+ {t('lowercase_check')}
+
)}
- {!isInputFocused &&
- signformState.signPassword.length > 0 &&
- signformState.signPassword.length < 8 && (
-
- {t('atleast_8_char_long')}
-
+ {showAlert.uppercaseChar ? (
+
+
+
+ ) : (
+
+
+
+ )}
+ {t('uppercase_check')}
+
+ )}
+ {isInputFocused && (
+
+ {showAlert.numericValue ? (
+
+
+
+ ) : (
+
+
+
+ )}
+ {t('numeric_value_check')}
+
)}
+ {isInputFocused && (
+
+ {showAlert.specialChar ? (
+
+
+
+ ) : (
+
+
+
+ )}
+ {t('special_char_check')}
+
+ )}
+