You can solve this problem by setting autocapitalize as off
<input type="text" name="test1" autocapitalize="off"/>
and also set the autocorrect attribute of your text field to off to disable the auto-correction feature.
<input type="text" name="test1" autocorrect="off"/>
source
share