ubicloud/views/auth/recovery_auth.erb
Jeremy Evans 750ebdc055 Change from erb_formatter to herb/formatter
Currently, herb/formatter has at least 4 bugs the prevent us from
switching to it (https://github.com/marcoroth/herb/issues 476, 477,
478, and 479). This includes manual fixes for each issue.

herb/formatter also introduces a rubocop violation for the
Layout/AssignmentIndentation cop. This disables that cop.
2025-09-05 14:01:01 -07:00

33 lines
978 B
Text

<% @page_title = "2FA - Recovery Codes" %>
<% @page_message = "Verify your sign in" %>
<% form(action: rodauth.recovery_auth_path, role: :form, method: :post, class: "rodauth space-y-6") do %>
<%== rodauth.recovery_auth_additional_form_tags %>
<%== part(
"components/form/text",
name: rodauth.recovery_codes_param,
label: "#{rodauth.recovery_codes_label}#{rodauth.input_field_label_suffix}",
attributes: {
required: true,
autocomplete: "off"
}
) %>
<div class="flex flex-col text-center">
<%== part("components/form/submit_button", text: rodauth.recovery_auth_button) %>
<p class="mt-10 text-center text-sm text-gray-400">
Can't access your recovery codes?
<br>
Can't access your recovery codes?
<br>
<a
href="mailto:support@ubicloud.com"
class="font-semibold leading-6 text-orange-500 hover:text-orange-700"
>
contact support
</a>
</p>
</div>
<% end %>