Files
ubicloud/views/auth/verify_account.erb
Jeremy Evans dfda7e66f8 Remove unneeded branch in auth/verify_account view
Our rodauth configuration has verify_account_set_password? false,
so this code is dead.

After changes:

Line Coverage: 99.48% (11196 / 11255)
Branch Coverage: 97.13% (2841 / 2925)
2025-01-14 09:04:22 -08:00

14 lines
482 B
Plaintext

<% @page_title = "Verify Account" %>
<% @page_message = "Verify your account" %>
<form class="rodauth space-y-6" role="form" method="POST">
<%== rodauth.verify_account_additional_form_tags %>
<%== rodauth.csrf_tag %>
<div class="flex flex-col text-center">
<%== render("components/form/submit_button", locals: { text: "Verify Account" }) %>
<a href="/login" class="mt-2 text-sm font-semibold leading-6 text-gray-900">Sign in to another account</a>
</div>
</form>