mirror of
https://github.com/Nezumi-2711/javascript-training.git
synced 2026-09-22 13:38:43 +00:00
10 lines
458 B
JavaScript
10 lines
458 B
JavaScript
export const MESSAGE = {
|
|
PASSWORD_NOT_MATCH: 'Password not match! Please try again!',
|
|
PASSWORD_NOT_STRONG:
|
|
'Password must at least one uppercase, one lowercase letter, one number and one special character!',
|
|
ERROR_MESSAGE_DEFAULT: 'Something went wrong!',
|
|
TIME_OUT_ERROR: 'Connection time out! Please try again!',
|
|
};
|
|
export const TYPE_POPUP = { success: 'success', error: 'error' };
|
|
export const MARK_ICON = { success: 'check', error: 'error' };
|