main
1<h2>Resend confirmation instructions</h2>
2
3<%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %>
4 <%= devise_error_messages! %>
5
6 <div><%= f.label :email %><br />
7 <%= f.email_field :email, :autofocus => true %></div>
8
9 <div><%= f.submit "Resend confirmation instructions" %></div>
10<% end %>
11
12<%= render "devise/shared/links" %>