Move 'Forgot password' link to the right of password label
This commit is contained in:
parent
f8a606869e
commit
c4347c8d9a
1 changed files with 11 additions and 1 deletions
|
@ -17,7 +17,17 @@
|
|||
<%= hidden_field_tag("referer", h(params[:referer]), :autocomplete => "off") %>
|
||||
|
||||
<%= f.text_field :username, :label => t(".email or username"), :tabindex => 1, :value => params[:username] %>
|
||||
<%= f.password_field :password, :label => t(".password"), :tabindex => 2, :value => "", :help => link_to(t(".lost password link"), user_forgot_password_path) %>
|
||||
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<%= f.label :password, :class => "form-label" %>
|
||||
</div>
|
||||
<div class="col text-end">
|
||||
<small><%= link_to(t(".lost password link"), user_forgot_password_path) %></small>
|
||||
</div>
|
||||
</div>
|
||||
<input class="form-control mb-3" type="password" name="password" id="password" tabindex="2" value="" autocomplete="off" />
|
||||
|
||||
<%= f.form_group do %>
|
||||
<%= f.check_box :remember_me, { :label => t(".remember"), :tabindex => 3, :checked => (params[:remember_me] == "yes") }, "yes" %>
|
||||
<% end %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue