Skip to content

Commit

Permalink
Turn off spellchecking of the username
Browse files Browse the repository at this point in the history
* Safari is being picky plus usernames don't have to be grammatcially correct
* Turn off some others... not all are outside of Safari

Post OpenUserJS#1174
  • Loading branch information
Martii committed Oct 22, 2017
1 parent 3ce2370 commit 2bf1f6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/pages/loginPage.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h3>
</noscript>
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-user fa-fw"></i></span>
<input class="form-control" type="text" name="username" value="{{wantname}}" placeholder="Username">
<input class="form-control" type="text" name="username" value="{{wantname}}" placeholder="Username" spellcheck="false" autocomplete="off" autocorrect="off" autocapitalize="off">
<select name="auth" class="form-control">
{{#strategies}}
<option value="{{strat}}" {{#selected}}selected="selected"{{/selected}}>{{display}}</option>
Expand Down

0 comments on commit 2bf1f6f

Please sign in to comment.