mpiscopo Posted December 13, 2005 Share Posted December 13, 2005 I have a lot of problems with customers who can't log in because they are mixing up the capital and lower case letters in their passwords. Since credit card information is not stored on the server, I don't need the passwords to be case sensitive. How do I turn this feature off? I want customers not to worry about upper and lower case letters in their passwords. Thanks, Mark Link to comment Share on other sites More sharing options...
gscreations Posted December 13, 2005 Share Posted December 13, 2005 I have a lot of problems with customers who can't log in because they are mixing up the capital and lower case letters in their passwords. Since credit card information is not stored on the server, I don't need the passwords to be case sensitive. How do I turn this feature off? I want customers not to worry about upper and lower case letters in their passwords. Thanks, Mark think best way to do this is to force passwords to uppercase on the password input box, will have to change all password boxes in login / register add this : onKeyUp="this.value=this.value.toUpperCase(); to them that should sort it out, that way whatever they type will be uppercase Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.