">
<%= avatar_tag user, loading: :lazy %>
diff --git a/app/views/users/_ban_button.html.erb b/app/views/users/_ban_button.html.erb
index 398b738..3cfab48 100644
--- a/app/views/users/_ban_button.html.erb
+++ b/app/views/users/_ban_button.html.erb
@@ -1,13 +1,15 @@
<% if user.active? %>
<%= button_to user_ban_path(user), method: :post,
- class: "btn btn--negative full-width",
- data: { turbo_confirm: "Are you sure you want to ban this user?" } do %>
- Ban user
+ class: "btn full-width",
+ data: { turbo_confirm: "Are you sure you want to ban this user? This will log them out, delete their messages, and block their IP addresses." } do %>
+ <%= image_tag "cancel.svg", aria: { hidden: "true", label: "Ban #{@user.name}" } %>
+ Ban <%= user.name %>
<% end %>
<% else %>
<%= button_to user_ban_path(user), method: :delete,
- class: "btn full-width",
+ class: "btn btn--negative full-width",
data: { turbo_confirm: "Are you sure you want to remove the ban on this user?" } do %>
- Remove ban
+ <%= image_tag "cancel.svg", aria: { hidden: "true", label: "Ban #{@user.name}" } %>
+ Remove ban
<% end %>
<% end %>
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index 94872e6..8fb4a28 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -16,7 +16,7 @@
<% end %>
-