This commit is contained in:
Salikh 2024-05-25 12:05:45 +04:00
parent 0e82486d59
commit 827cd9fac2

View File

@ -97,7 +97,7 @@ namespace MotorPlantBusinessLogic.BusinessLogics
{
throw new ArgumentNullException("Не указана валидная почта", nameof(model.Email));
}
if (string.IsNullOrEmpty(model.Password))
if (string.IsNullOrEmpty(model.Password) || !Regex.IsMatch(model.Password, @"^(?=.*[A-Za-z])(?=.*\d)(?=.*[^A-Za-z0-9\n]).{10,50}$"))
{
throw new ArgumentNullException("Не указан правильный пароль", nameof(model.Password));
}