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
409 B
Text
Raw Normal View History

2009-10-11 22:11:58 -03: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 23:28:13 +02:00
<%= devise_error_messages! %>
2011-07-14 15:43:10 +03:00
<div><%= f.label :email %><br />
2012-08-22 02:13:38 +03:00
<%= f.email_field :email, {:autofocus => true} %></div>
2009-10-11 22:11:58 -03:00
2011-07-14 15:43:10 +03:00
<div><%= f.submit "Resend confirmation instructions" %></div>
<% end %>
<%= render "devise/shared/links" %>