2025-05-25 08:12:54 -04:00
|
|
|
<%# locals: (path:, accountable_type:, show_us_link: true, show_eu_link: true) %>
|
2024-11-04 20:27:31 -05:00
|
|
|
|
|
|
|
<%= render layout: "accounts/new/container", locals: { title: t(".title"), back_path: new_account_path } do %>
|
|
|
|
<div class="text-sm">
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= link_to path, class: "flex items-center gap-4 w-full text-center text-primary focus:outline-hidden focus:bg-surface border border-transparent focus:border focus:border-gray-200 px-2 hover:bg-surface rounded-lg p-2" do %>
|
2024-11-04 20:27:31 -05:00
|
|
|
<span class="flex w-8 h-8 shrink-0 grow-0 items-center justify-center rounded-lg bg-alpha-black-50 shadow-[inset_0_0_0_1px_rgba(0,0,0,0.02)]">
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= icon("keyboard") %>
|
2024-11-04 20:27:31 -05:00
|
|
|
</span>
|
|
|
|
<%= t("accounts.new.method_selector.manual_entry") %>
|
|
|
|
<% end %>
|
|
|
|
|
2025-05-25 08:12:54 -04:00
|
|
|
<% if show_us_link %>
|
2025-01-31 12:13:58 -06:00
|
|
|
<%# Default US-only Link %>
|
2025-06-09 18:30:52 -04:00
|
|
|
<%= link_to new_plaid_item_path(region: "us", accountable_type: accountable_type),
|
2025-05-25 08:12:54 -04:00
|
|
|
class: "text-primary flex items-center gap-4 w-full text-center focus:outline-hidden focus:bg-gray-50 border border-transparent focus:border focus:border-gray-200 px-2 hover:bg-gray-50 rounded-lg p-2",
|
|
|
|
data: { turbo_frame: "modal" } do %>
|
2024-11-15 13:49:37 -05:00
|
|
|
<span class="flex w-8 h-8 shrink-0 grow-0 items-center justify-center rounded-lg bg-alpha-black-50 shadow-[inset_0_0_0_1px_rgba(0,0,0,0.02)]">
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= icon("link-2") %>
|
2024-11-15 13:49:37 -05:00
|
|
|
</span>
|
2025-01-31 17:04:26 -05:00
|
|
|
<%= t("accounts.new.method_selector.connected_entry") %>
|
2025-05-25 08:12:54 -04:00
|
|
|
<% end %>
|
2025-01-31 17:04:26 -05:00
|
|
|
<% end %>
|
2025-01-31 12:13:58 -06:00
|
|
|
|
2025-01-31 17:04:26 -05:00
|
|
|
<%# EU Link %>
|
2025-05-25 08:12:54 -04:00
|
|
|
<% if show_eu_link %>
|
2025-06-09 18:30:52 -04:00
|
|
|
<%= link_to new_plaid_item_path(region: "eu", accountable_type: accountable_type),
|
2025-05-25 08:12:54 -04:00
|
|
|
class: "text-primary flex items-center gap-4 w-full text-center focus:outline-hidden focus:bg-gray-50 border border-transparent focus:border focus:border-gray-200 px-2 hover:bg-gray-50 rounded-lg p-2",
|
|
|
|
data: { turbo_frame: "modal" } do %>
|
2025-01-31 17:04:26 -05:00
|
|
|
<span class="flex w-8 h-8 shrink-0 grow-0 items-center justify-center rounded-lg bg-alpha-black-50 shadow-[inset_0_0_0_1px_rgba(0,0,0,0.02)]">
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= icon("link-2") %>
|
2025-01-31 17:04:26 -05:00
|
|
|
</span>
|
|
|
|
<%= t("accounts.new.method_selector.connected_entry_eu") %>
|
2025-05-25 08:12:54 -04:00
|
|
|
<% end %>
|
2024-11-15 13:49:37 -05:00
|
|
|
<% end %>
|
2024-11-04 20:27:31 -05:00
|
|
|
</div>
|
|
|
|
<% end %>
|