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

2009-10-11 21:11:58 -04:00
<h2>Resend confirmation instructions</h2>
2014-02-25 12:25:55 -05:00
<%= 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 />
2014-02-25 12:25:55 -05: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" %>