<% @title = "Forgot My Password" %>

<%=app_name%>

Forgot My Passowrd

<%= form_for resource, as: resource_name, url: password_path(resource_name), html: { method: :post, class: "form-horizontal" } do |f| %> <%= f.error_notification %> <%= f.form_group :email, class: "row" do |f| %> <%= f.label :email, class: "form-label" %> <%= f.email_field :email, autofocus: true, class: "form-control" %> <%= f.error_messages %> <% end %>
<%= link_to "Sign in", new_registration_path(resource_name) %> <%= f.submit "Send me reset password instructions", class: "btn btn-primary ml-auto" %>
<% end %>