04.03.2014, 00:43
Hello, how to make that the password must be between 5 and 32 characters?
Код:
if(response)
{
if(!strlen(inputtext) || strlen(inputtext) > 32)
}
else if(strlen(inputtext) > 0 && strlen(inputtext) < 32)
{


