7лаба небуквенных символов

This commit is contained in:
Timourka 2024-05-05 17:40:48 +04:00
parent e7c191437a
commit bf9c48b0e7

View File

@ -105,7 +105,7 @@ namespace AutomobilePlantBusinessLogic.BusinessLogics
{
throw new ArgumentException("Некорретно введен email клиента", nameof(model.Email));
}
if (!Regex.IsMatch(model.Password, @"^(?=.*\d)(?=.*[^\d\s]).+$"))
if (!Regex.IsMatch(model.Password, @"^(?=.*\d)(?=.*\W)(?=.*[^\d\s]).+$"))
{
throw new ArgumentException("Некорректно введен пароль клиента", nameof(model.Password));
}