%# Modal: Link an existing manual account to a Enable Banking account %>
<%= turbo_frame_tag "modal" do %>
<%= render DS::Dialog.new do |dialog| %>
<% dialog.with_header(title: "Link Enable Banking account") %>
<% dialog.with_body do %>
<% if @available_enable_banking_accounts.blank? %>
All Enable Banking accounts appear to be linked already.
- If you just connected or synced, try again after the sync completes.
- To link a different account, first unlink it from the account’s actions menu.
<% else %>
<%= form_with url: link_existing_account_enable_banking_items_path, method: :post, class: "space-y-4" do %>
<%= hidden_field_tag :account_id, @account.id %>
<%= render DS::Button.new(text: "Link", variant: :primary, icon: "link-2", type: :submit) %>
<%= render DS::Link.new(text: "Cancel", variant: :secondary, href: accounts_path, data: { turbo_frame: "_top" }) %>
<% end %>
<% end %>
<% end %>
<% end %>
<% end %>