]> git.openstreetmap.org Git - rails.git/commitdiff
Convert user confirmation forms to use bootstrap
authorTom Hughes <tom@compton.nu>
Thu, 3 Sep 2020 22:51:23 +0000 (23:51 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 3 Sep 2020 22:51:23 +0000 (23:51 +0100)
app/views/users/confirm.html.erb
app/views/users/confirm_email.html.erb

index 4ea5ac5c58d67c9d12340bdf2e21f13c9ca769dc..fde54554662b797b12b49863ddc69a189539f92d 100644 (file)
 
   <p><%= t ".press confirm button" %></p>
 
-  <%= form_tag({}, { :id => "confirm", :class => "standard-form" }) do %>
-    <input type="display_name" name="confirm_string" value="<%= params[:display_name] %>">
-    <input type="hidden" name="confirm_string" value="<%= params[:confirm_string] %>">
-    <input type="submit" name="confirm_action" value="<%= t ".button" %>">
+  <%= bootstrap_form_tag :html => { :id => "confirm" } do |f| %>
+    <%= f.hidden_field :display_name, :value => params[:display_name] %>
+    <%= f.hidden_field :confirm_string, :value => params[:confirm_string] %>
+    <%= f.primary t(".button") %>
   <% end %>
 <% else %>
   <h1>
index ba2726d425526bbdffaf922484b3dd15ac356849..49b279c8feccfbc462e8afff1f56d5b1d1b29ba4 100644 (file)
@@ -10,7 +10,7 @@
 
 <p><%= t ".press confirm button" %></p>
 
-<%= form_tag({}, { :id => "confirm", :class => "standard-form" }) do %>
-  <input type="hidden" name="confirm_string" value="<%= params[:confirm_string] %>">
-  <input type="submit" name="confirm_action" value="<%= t ".button" %>">
+<%= bootstrap_form_tag :html => { :id => "confirm" } do |f| %>
+  <%= f.hidden_field :confirm_string, :value => params[:confirm_string] %>
+  <%= f.primary t(".button") %>
 <% end %>