Password help!(FMX)

I have this password thing done, and I’m wondering if there is anyway to make it not case sensitive without haveing to type every possible spelling.

Thanks in advance,
Inferno

keep all your passwords as lowercase, then run myString.toLowerCase() on any user input before verifying.

or vice versa with String.toUpperCase().