Fix openid "remember me" label
It was targeting the wrong checkbox.
This commit is contained in:
parent
2b775d3433
commit
8d01db3a3e
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
<div id="login_login">
|
<div id="login_login">
|
||||||
<% content_for :heading do %>
|
<% content_for :heading do %>
|
||||||
<h1><%= t 'user.login.heading' %></h1>
|
<h1><%= t 'user.login.heading' %></h1>
|
||||||
|
@ -58,7 +57,7 @@
|
||||||
|
|
||||||
<div id="remember_me_openid" class='form-row'>
|
<div id="remember_me_openid" class='form-row'>
|
||||||
<%= check_box_tag "remember_me_openid", "yes", false, :tabindex => 5 %>
|
<%= check_box_tag "remember_me_openid", "yes", false, :tabindex => 5 %>
|
||||||
<label class="standard-label" for="remember_me"><%= t 'user.login.remember' %></label>
|
<label class="standard-label" for="remember_me_openid"><%= t 'user.login.remember' %></label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= submit_tag t('user.login.login_button'), :tabindex => 6, :id => "login_openid_submit" %>
|
<%= submit_tag t('user.login.login_button'), :tabindex => 6, :id => "login_openid_submit" %>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue