hello, ,my name is coulton, i am trying to allow either uppercase or lowercase inputs into my code. i can type a password and it will work but it wont let me type uppercase instead.
Having case sensitive passwords is often preferred because that makes the passwords stronger.
If you want case insensitive passwords you can convert both strings to lower case before doing the comparison. C++ has the function std::tolower that yu can use to convert a single char to lower case.