2014-06-10 16:59:19 +00:00
|
|
|
<% content_for :title, "Password Reset | Metamaps" %>
|
|
|
|
|
2014-08-12 15:09:53 +00:00
|
|
|
<div id="yield">
|
2014-06-10 16:59:19 +00:00
|
|
|
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post, :class => "forgotPassword centerGreyForm" }) do |f| %>
|
2013-07-10 18:02:38 +00:00
|
|
|
<%= devise_error_messages! %>
|
|
|
|
|
2014-09-22 00:47:09 +00:00
|
|
|
<h3>FORGOT PASSWORD?</h3>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div><%= f.label :email, "Enter your email:", :class => "firstFieldText" %>
|
2013-07-10 18:02:38 +00:00
|
|
|
<%= f.email_field :email, :autofocus => true %></div>
|
|
|
|
|
2014-09-25 16:25:46 +00:00
|
|
|
<div><%= f.submit "Send Password Reset Instructions" %></div>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
|
|
|
<% end %>
|
2014-08-12 15:09:53 +00:00
|
|
|
</div>
|
2013-07-10 18:02:38 +00:00
|
|
|
|
|
|
|
|