GUAC-965: Add autocorrect="off" and autocapitalize="off" where appropriate.

This commit is contained in:
Michael Jumper
2014-12-26 21:49:52 -08:00
parent bcf07148b2
commit 67fb86237c
6 changed files with 18 additions and 12 deletions

View File

@@ -37,7 +37,7 @@ THE SOFTWARE.
<!-- Login fields (username + password) -->
<div class="login-fields">
<input ng-model="username" placeholder="{{'LOGIN.FIELD_PLACEHOLDER_USERNAME' | translate}}" type="text" name="username" autofocus="autofocus" class="username"/>
<input ng-model="username" placeholder="{{'LOGIN.FIELD_PLACEHOLDER_USERNAME' | translate}}" type="text" name="username" autofocus="autofocus" autocorrect="off" autocapitalize="off" class="username"/>
<input ng-model="password" placeholder="{{'LOGIN.FIELD_PLACEHOLDER_PASSWORD' | translate}}" type="password" name="password" class="password"/>
</div>