2025-02-06 14:16:53 -06:00
|
|
|
<%
|
|
|
|
header_title t(".title")
|
|
|
|
header_description t(".description")
|
|
|
|
%>
|
|
|
|
|
|
|
|
<% content_for :sidebar do %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<%= render "settings/settings_nav" %>
|
2025-02-06 14:16:53 -06:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="space-y-4">
|
2025-02-13 11:31:07 -05:00
|
|
|
<h1 class="text-primary text-xl font-medium mb-4"><%= t(".page_title") %></h1>
|
2025-02-06 14:16:53 -06:00
|
|
|
<%= 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-gray-100 rounded-lg font-mono text-lg">
|
|
|
|
<%= code %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-6">
|
|
|
|
<%= link_to t(".continue"), settings_security_path, class: "w-full btn btn--primary" %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= settings_nav_footer %>
|
2025-02-13 11:31:07 -05:00
|
|
|
</div>
|