commit 5
This commit is contained in:
parent
0e82486d59
commit
827cd9fac2
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user