Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
fix(client): autofocus the password field on /oauth/signin if the use…
Browse files Browse the repository at this point in the history
…r already has a session.

fixes #1679
  • Loading branch information
Shane Tomlinson committed Sep 19, 2014
1 parent 42dab7b commit c4228b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/templates/sign_in.mustache
Expand Up @@ -33,7 +33,7 @@
<input type="hidden" class="email" value="{{ email }}" />

<div class="input-row password-row">
<input type="password" class="password tooltip-below" id="password" placeholder="{{#t}}Password{{/t}}" value="{{ password }}" pattern=".{8,}" required autocomplete="off" />
<input type="password" class="password tooltip-below" id="password" placeholder="{{#t}}Password{{/t}}" value="{{ password }}" pattern=".{8,}" required autocomplete="off" autofocus />

<input id="show-password" type="checkbox" class="show-password" aria-controls="password" tabindex="-1" data-novalue />
<label for="show-password" class="show-password-label">
Expand Down

0 comments on commit c4228b2

Please sign in to comment.