mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 06:44:52 +00:00
* Implement a provider configured account type * Fix for SimpleFIN * FIX tests and linter
27 lines
1.1 KiB
Plaintext
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 %>
|