1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/app/views/devise/confirmations/new.html.erb

13 lines
407 B
Text
Raw Normal View History

2009-10-11 21:11:58 -04:00
<h2>Resend confirmation instructions</h2>
<%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %>
2010-04-13 17:28:13 -04:00
<%= devise_error_messages! %>
2011-07-14 08:43:10 -04:00
<div><%= f.label :email %><br />
2012-08-21 19:15:48 -04:00
<%= f.email_field :email, :autofocus => true %></div>
2009-10-11 21:11:58 -04:00
2011-07-14 08:43:10 -04:00
<div><%= f.submit "Resend confirmation instructions" %></div>
<% end %>
<%= render "devise/shared/links" %>