]> git.openstreetmap.org Git - rails.git/commitdiff
refactor password field to use form helpers
authorEmin Kocan <kocanmn.dev@gmail.com>
Mon, 1 Jul 2024 11:23:03 +0000 (13:23 +0200)
committerEmin Kocan <kocanmn.dev@gmail.com>
Wed, 3 Jul 2024 13:01:13 +0000 (15:01 +0200)
app/views/sessions/new.html.erb

index 57e6d014a3ce5e0ae85bab7f7223b3728b0c44de..4ee1168f0d88e2915f088c62b38f8c168b1b31ee 100644 (file)
 
     <%= f.text_field :username, :label => t(".email or username"), :autofocus => true, :tabindex => 1, :value => params[:username] %>
 
-    <div class="row">
-      <div class="col">
-        <%= f.label :password, t(".password"), :class => "form-label" %>
-      </div>
-      <div class="col text-end">
-        <small><%= link_to(t(".lost password link"), user_forgot_password_path) %></small>
-      </div>
+    <div class="d-flex flex-wrap column-gap-3 justify-content-between align-items-baseline">
+      <%= f.label :password, t(".password"), :class => "my-2" %>
+      <small><%= link_to(t(".lost password link"), user_forgot_password_path) %></small>
     </div>
-    <input class="form-control mb-3" type="password" name="password" id="password" tabindex="2" value="" autocomplete="on" />
+
+    <%= f.password_field :password, :autocomplete => "on", :tabindex => 2, :value => "", :skip_label => true %>
 
     <%= f.form_group do %>
       <%= f.check_box :remember_me, { :label => t(".remember"), :tabindex => 3, :checked => (params[:remember_me] == "yes") }, "yes" %>