otwarchive-symphonyarchive/app/views/users/passwords/new.html.erb

16 lines
556 B
Text
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
<!--Descriptive page name, messages and instructions-->
<h2 class="heading"><%= t(".page_heading") %></h2>
<p><%= t(".instructions") %></p>
<!--/descriptions-->
<!--main content-->
<%= form_for resource, url: user_password_path, html: { method: :post, html: "reset password simple post" } do |f| %>
<%= error_messages_for resource %>
<p>
<%= label_tag :reset_login, t(".email_or_username_html", or: tag.strong(t(".or"))) %>
<%= f.text_field :login, id: :reset_login %>
<%= f.submit t(".reset_password") %>
</p>
<% end %>
<!--/content-->