Files
ubicloud/views/auth/reset_password.erb
Jeremy Evans cb389c5144 Use Roda part plugin to simplify render calls with locals
This uses the new part plugin to simplify and optimize render
calls with locals.

```ruby
render(:template, locals: {foo: 'bar'})

part(:template, foo: 'bar')
```

This simplifies a large number of calls in Clover, since
rendering with locals is one of the most common method
calls in the templates.

The main advantage of this is simplicity, but the part method
is also more optimized, and will be even more optimized when
we upgrade to Ruby 3.4.

Diff best reviewed with:

```
git diff -b --color-words --word-diff-regex='\\w+|[^[:space:]]'
```
2025-01-31 09:47:06 -08:00

17 lines
590 B
Plaintext

<% @page_title = "Reset Password" %>
<% @page_message = "Reset your password" %>
<form class="rodauth space-y-6" role="form" method="POST">
<%== rodauth.reset_password_additional_form_tags %>
<%== rodauth.csrf_tag %>
<%== render("components/rodauth/password_field") %>
<%== part("components/rodauth/password_field", confirm: true) %>
<div class="flex flex-col text-center">
<%== part("components/form/submit_button", text: "Reset Password") %>
<a href="/login" class="mt-2 text-sm font-semibold leading-6 text-gray-900">Sign in to another account</a>
</div>
</form>