Files
grecia/app/views/devise/password_expired/show.html.erb
Javi Martín b4b33926cf Fix HTML closing tags
In some places, we accidentally opened the same tag twice instead of
closing it, while in some other places we closed a tag without opening
it in the first place.

We've detected these issues thanks to the HTML Beautifier gem, which
we're about to start using for indentation purposes.
2025-03-07 16:02:07 +01:00

11 lines
440 B
Plaintext

<h2><%= t("devise.password_expired.expire_password") %></h2>
<%= form_for(resource, as: resource_name, url: [resource_name, :password_expired], html: { method: :put }) do |f| %>
<%= f.password_field :current_password %>
<%= f.password_field :password, label: t("devise.password_expired.new_password") %>
<%= f.password_field :password_confirmation %>
<p><%= f.submit t("devise.password_expired.change_password") %></p>
<% end %>