T-mobile password reset does not allow you to type the letter "V"
support.t-mobile.com
T-mobile password reset does not allow you to type the letter "V"
1–10 of 85 posts
Re: T-mobile password reset does not allow you to type the letter "V"
#2Re: T-mobile password reset does not allow you to type the letter "V"
#3 function keyDown(a) {
if (a.keyCode == 86) {
a.preventDefault()
}
}
And that's assigned to onkeydown...Funny enough, elsewhere in their code, they do explicitly check for Ctrl & V/C.
Re: T-mobile password reset does not allow you to type the letter "V"
#4Re: T-mobile password reset does not allow you to type the letter "V"
#5Wait till this guy figures out that T-Mobile also stores his password in plain text.
Re: T-mobile password reset does not allow you to type the letter "V"
#6I like my T Mobile service but there's something odd with their backend systems and/or customer service. I logged in to disable their "WebGuard" service that seemed to be blocking pages at random. It required address and social security verification, but I couldn't get it to verify my details.
I called, and the customer service agent hopefully told me that my address didn't exist. I live in the middle of New York, and I've never had this issue before. I can't help but wonder what crazy verification system they're using.
Re: T-mobile password reset does not allow you to type the letter "V"
#7Re: T-mobile password reset does not allow you to type the letter "V"
#8Wait till this guy figures out that T-Mobile also stores his password in plain text.
I wonder if it's a bad idea to disclaim that you store passwords in plain text (when you actually use PBKDF2 or something) to trick users into making more secure passwords.
Re: T-mobile password reset does not allow you to type the letter "V"
#9Wait till this guy figures out that T-Mobile also stores his password in plain text.
I wonder if it's a bad idea to disclaim that you store passwords in plain text (when you actually use PBKDF2 or something) to trick users into making more secure passwords.
Re: T-mobile password reset does not allow you to type the letter "V"
#10Wait till this guy figures out that T-Mobile also stores his password in plain text.
I wonder if it's a bad idea to disclaim that you store passwords in plain text (when you actually use PBKDF2 or something) to trick users into making more secure passwords.