17 lines
524 B
Text
17 lines
524 B
Text
{ content_for :title, "Password Reset | Metamaps" }
|
|
{ content_for :mobile_title, "Password Reset" }
|
|
|
|
<div id="yield">
|
|
{ form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post, :class => "forgotPassword centerGreyForm" }) do |f| }
|
|
|
|
<h3>FORGOT PASSWORD?</h3>
|
|
|
|
<div>{ f.label :email, "Enter your email:", :class => "firstFieldText" }
|
|
{ f.email_field :email, :autofocus => true }</div>
|
|
|
|
<div>{ f.submit "Send Password Reset Instructions" }</div>
|
|
|
|
{ end }
|
|
</div>
|
|
|
|
|