ubicloud/views/auth/otp_unlock.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

44 lines
1.4 KiB
Text

<% @page_message = "Your one-time password authentication has been locked out, and must be unlocked to be used." %>
<% form(role: :form, method: :post, class: "rodauth space-y-6") do %>
<%== rodauth.otp_unlock_additional_form_tags %>
<p>
<%= rodauth.otp_unlock_consecutive_successes_label %>: <%= rodauth.otp_unlock_num_successes %>
</p>
<p>
<%= rodauth.otp_unlock_required_consecutive_successes_label %>: <%= rodauth.otp_unlock_auths_required %>
</p>
<p>
<%= rodauth.otp_unlock_next_auth_deadline_label %>: <%= (rodauth.otp_unlock_deadline - Time.now).to_i %> seconds
</p>
<%== render("components/rodauth/otp_auth_code_field") %>
<div class="flex flex-col text-center">
<%== part("components/form/submit_button", text: rodauth.otp_unlock_button) %>
<p class="mt-10 text-center text-sm text-gray-400">
Can't access your authentication app?
<br>
Can't access your authentication app?
<br>
<a
href="/<%= rodauth.recovery_auth_route %>"
class="font-semibold leading-6 text-orange-500 hover:text-orange-700"
>
Enter a recovery code
</a>
or
<a
href="mailto:support@ubicloud.com"
class="font-semibold leading-6 text-orange-500 hover:text-orange-700"
>
contact support
</a>
</p>
</div>
<% end %>
<%== rodauth.otp_unlock_form_footer %>