Files
sure/app/views/simplefin_items/new.html.erb
soky srm 226207e2f7 Provider optimisation (#375)
* Implement a provider configured account type

* Fix for SimpleFIN

* FIX tests and linter
2025-11-24 19:52:34 +01:00

27 lines
1.1 KiB
Plaintext

<%= turbo_frame_tag "modal" do %>
<%= render DS::Dialog.new do |dialog| %>
<% dialog.with_header(title: t(".title")) %>
<% dialog.with_body do %>
<% if @error_message.present? %>
<div class="mb-4 p-3 rounded-md bg-destructive/10 text-destructive text-sm">
<%= @error_message %>
</div>
<% end %>
<%= form_with model: @simplefin_item, url: simplefin_items_path, method: :post, data: { turbo: true, turbo_frame: "_top" } do |f| %>
<div class="space-y-3">
<div>
<%= f.label :setup_token, t(".setup_token"), class: "text-sm text-secondary block mb-1" %>
<%= f.text_field :setup_token, class: "input", placeholder: t(".setup_token_placeholder") %>
</div>
<div class="flex items-center gap-2 justify-end pt-2">
<%= link_to t(".cancel"), accounts_path, class: "btn", data: { turbo_frame: "_top", action: "DS--dialog#close" } %>
<%= f.submit t(".connect"), class: "btn btn--primary" %>
</div>
</div>
<% end %>
<% end %>
<% end %>
<% end %>