]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/accounts/edit.html.erb
Bootstrap 5: Add form-label class to hand-crafted form labels
[rails.git] / app / views / accounts / edit.html.erb
index 0dcab17b0d3ba20ffaa9f3febdb21f6e4dd31e96..038f5c09f9810d9967fd6fd342962942bf37f4ea 100644 (file)
@@ -17,8 +17,8 @@
   <%= f.password_field :pass_crypt_confirmation, :value => "", :autocomplete => "new-password" %>
 
   <fieldset class="form-group">
-    <label for="user_auth_provider"><%= t(".external auth") %></label>
-    <div class="form-row">
+    <label for="user_auth_provider" class="form-label"><%= t(".external auth") %></label>
+    <div class="row">
       <%= f.select(:auth_provider, Auth.providers, :hide_label => true, :wrapper => { :class => "col-auto mb-0" }) %>
       <%= f.text_field(:auth_uid, :hide_label => true, :wrapper => { :class => "col mb-0" }) %>
     </div>
@@ -26,7 +26,7 @@
   </fieldset>
 
   <div class="form-group">
-    <label><%= t ".public editing.heading" %></label>
+    <label class="form-label"><%= t ".public editing.heading" %></label>
     <span class="form-text text-muted">
       <% if current_user.data_public? %>
         <%= t ".public editing.enabled" %>
@@ -39,7 +39,7 @@
   </div>
 
   <div class="form-group">
-    <label><%= t ".contributor terms.heading" %></label>
+    <label class="form-label"><%= t ".contributor terms.heading" %></label>
     <span class="form-text text-muted">
       <% if current_user.terms_agreed? %>
         <%= t ".contributor terms.agreed" %>
     </span>
   </div>
 
-  <%= f.primary t(".save changes button") %>
+  <div class="row justify-content-between">
+    <div class="col-auto btn-wrapper">
+      <%= f.primary t(".save changes button") %>
+    </div>
+    <div class="col-auto btn-wrapper">
+      <%= link_to t(".delete_account"), account_deletion_path, :class => "btn btn-outline-danger" %>
+    </div>
+  </div>
 <% end %>
 
 <% unless current_user.data_public? %>
 <a name="public"></a>
 <h2><%= t ".public editing note.heading" %></h2>
 <%= t ".public editing note.html" %>
-  <%= button_to t(".make edits public button"), user_go_public_path %>
+<%= button_to t(".make edits public button"), user_go_public_path, :class => "btn btn-primary" %>
 <% end %>