otwarchive-symphonyarchive/app/views/admin/passwords/new.html.erb
2026-03-11 22:22:11 +00:00

15 lines
518 B
Text

<!--Descriptive page name, messages and instructions-->
<h2 class="heading"><%= t(".page_heading") %></h2>
<p><%= t(".instructions") %></p>
<!--/descriptions-->
<!--main content-->
<%= form_for resource, url: admin_password_path, html: { method: :post, class: "reset password simple post" } do |f| %>
<%= error_messages_for resource %>
<p>
<%= label_tag :reset_login, t(".reset_login_html") %>
<%= f.text_field :login, id: :reset_login %>
<%= f.submit t(".submit") %>
</p>
<% end %>
<!--/content-->