Valentina1133 a4ab8a7a01 Negative scenario of signing in and logging in (#169)
Co-authored-by: Anastasiya <82375995+anastasiyaig@users.noreply.github.com>
2023-10-13 16:26:39 +03:00

10 lines
403 B
Python

from enum import Enum
class OnboardingMessages(Enum):
WRONG_LOGIN_LESS_LETTERS = 'Username must be at least 5 character(s)'
WRONG_LOGIN_SYMBOLS_NOT_ALLOWED = 'Only letters, numbers, underscores, whitespaces and hyphens allowed'
WRONG_PASSWORD = 'Password must be at least 10 characters long'
PASSWORDS_DONT_MATCH = "Passwords don't match"
PASSWORD_INCORRECT = 'Password incorrect'