16 lines
556 B
Text
16 lines
556 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: 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-->
|