16 lines
450 B
Text
16 lines
450 B
Text
<div class="modal-body">
|
|
|
|
Are you sure you want to delete "<%= @delete_user.email %>"?
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
|
|
<%= link "Cancel", to: "#", class: "btn btn-outline-dark", phx_click: "hide", phx_target: "##{@modal_id}" %>
|
|
<%= link "Confirm Delete", to: "#",
|
|
class: "btn btn-danger",
|
|
phx_click: "confirm",
|
|
phx_target: @myself,
|
|
phx_value_id: @delete_user.id,
|
|
phx_value_email: @delete_user.email %>
|
|
|
|
</div>
|