1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-24 17:04:43 +00:00
Files
wrestlingdev.com/app/views/devise/passwords/new.html.erb

14 lines
434 B
Plaintext

<h2>Forgot your password?</h2>
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %>
<%= devise_error_messages! %>
<div><%= f.label :email %><br />
<%= f.email_field :email, :autofocus => true %></div>
<br>
<div><%= f.submit "Send me reset password instructions",:class=>"btn btn-success" %></div>
<% end %>
<br>
<br>
<%= render "devise/shared/links" %>