mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Move provider config to family * remove global settings * Remove turbo auto submit * Fix flash location * Fix mssing syncer for lunchflow * Update schema.rb * FIX tests and encryption config * FIX make rabbit happy * FIX run migration in SQL * FIX turbo frame modal * Branding fixes * FIX rabbit * OCD with product names * More OCD * No other console.log|warn in codebase --------- Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
35 lines
1.5 KiB
Plaintext
35 lines
1.5 KiB
Plaintext
<%= turbo_frame_tag "modal" do %>
|
|
<%= render DS::Dialog.new do |dialog| %>
|
|
<% dialog.with_header(title: "Lunch Flow Setup Required") %>
|
|
<% dialog.with_body do %>
|
|
<div class="space-y-4">
|
|
<div class="flex items-start gap-3">
|
|
<%= icon("alert-circle", class: "text-warning w-5 h-5 shrink-0 mt-0.5") %>
|
|
<div class="text-sm text-secondary">
|
|
<p class="font-medium text-primary mb-2">API Key Not Configured</p>
|
|
<p>Before you can link Lunch Flow accounts, you need to configure your Lunch Flow API key.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="bg-surface rounded-lg p-4 space-y-2 text-sm">
|
|
<p class="font-medium text-primary">Setup Steps:</p>
|
|
<ol class="list-decimal list-inside space-y-1 text-secondary">
|
|
<li>Go to <strong>Settings → Bank Sync Providers</strong></li>
|
|
<li>Find the <strong>Lunch Flow</strong> section</li>
|
|
<li>Enter your Lunch Flow API key</li>
|
|
<li>Return here to link your accounts</li>
|
|
</ol>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<%= link_to settings_providers_path,
|
|
class: "inline-flex items-center justify-center rounded-lg px-4 py-2 text-sm font-medium text-white bg-gray-900 hover:bg-gray-800 focus:outline-none focus:ring-2 focus:ring-gray-900 focus:ring-offset-2 transition-colors",
|
|
data: { turbo: false } do %>
|
|
Go to Provider Settings
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|