PIbd-21 Yaruskin S.A. LabWork07_Base #15

Closed
Salikh wants to merge 9 commits from lab7 into lab6
Showing only changes of commit 827cd9fac2 - Show all commits

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));
}