2024-11-15 13:49:37 -05:00
|
|
|
<%# locals: (path:, link_token: nil) %>
|
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">
|
|
|
|
<%= link_to path, class: "flex items-center gap-4 w-full text-center focus:outline-none focus:bg-gray-50 border border-transparent focus:border focus:border-gray-200 px-2 hover:bg-gray-50 rounded-lg p-2" do %>
|
|
|
|
<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)]">
|
|
|
|
<%= lucide_icon("keyboard", class: "text-gray-500 w-5 h-5") %>
|
|
|
|
</span>
|
|
|
|
<%= t("accounts.new.method_selector.manual_entry") %>
|
|
|
|
<% end %>
|
|
|
|
|
2024-11-15 13:49:37 -05:00
|
|
|
<% if link_token.present? %>
|
|
|
|
<button data-controller="plaid" data-action="plaid#open modal#close" data-plaid-link-token-value="<%= @link_token %>" class="flex items-center gap-4 w-full text-center focus:outline-none focus:bg-gray-50 border border-transparent focus:border focus:border-gray-200 px-2 hover:bg-gray-50 rounded-lg p-2">
|
|
|
|
<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)]">
|
|
|
|
<%= lucide_icon("link-2", class: "text-gray-500 w-5 h-5") %>
|
|
|
|
</span>
|
|
|
|
<%= t("accounts.new.method_selector.connected_entry") %>
|
|
|
|
</button>
|
|
|
|
<% end %>
|
2024-11-04 20:27:31 -05:00
|
|
|
</div>
|
|
|
|
<% end %>
|