mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 06:25:19 +02:00
* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:23 EDT * [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:30 EDT * Update stimulus controller references to use namespace * Fix remaining tests
32 lines
846 B
Text
32 lines
846 B
Text
<%
|
|
header_title t(".title")
|
|
header_description t(".description")
|
|
%>
|
|
|
|
<% content_for :sidebar do %>
|
|
<%= render "settings/settings_nav" %>
|
|
<% end %>
|
|
|
|
<div class="space-y-4">
|
|
<h1 class="text-primary text-xl font-medium mb-4"><%= t(".page_title") %></h1>
|
|
<%= settings_section title: t(".backup_codes_title"), subtitle: t(".backup_codes_description") do %>
|
|
<div class="space-y-6">
|
|
<div class="grid grid-cols-2 gap-4">
|
|
<% @backup_codes.each do |code| %>
|
|
<div class="p-3 bg-surface-inset rounded-lg font-mono text-lg">
|
|
<%= code %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= render DS::Link.new(
|
|
text: t(".continue"),
|
|
href: settings_security_path,
|
|
variant: "primary",
|
|
full_width: true
|
|
) %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= settings_nav_footer %>
|
|
</div>
|