if(password.length()<6){
cout<<"password must be atleast 6 characters long...";
}
else{
cout<<"signup successful";
}
}
return 0;
}
the code works completely, my question is what do I have to do to make the code stsrt over when the length of the username or password is less than required ? do I have to use a loop or something?