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.
11 lines
440 B
Plaintext
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 %>
|