15 lines
437 B
Text
15 lines
437 B
Text
<h1 class="index">Password Reset</h1>
|
|
|
|
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post, :class => "new_user forgotPassword" }) do |f| %>
|
|
<%= devise_error_messages! %>
|
|
|
|
<h3>Forgot your password?</h3>
|
|
|
|
<div><%= f.label :email %>
|
|
<%= f.email_field :email, :autofocus => true %></div>
|
|
|
|
<div><%= f.submit "Send me reset password instructions" %></div>
|
|
|
|
<% end %>
|
|
|
|
|