You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
437 B
19 lines
437 B
12 years ago
|
<%= render :partial => "users/shared/links" %>
|
||
13 years ago
|
|
||
13 years ago
|
<%= simple_form_for(resource,
|
||
|
as: resource_name,
|
||
|
url: confirmation_path(resource_name),
|
||
|
html: { method: :post, class: 'form-horizontal' }
|
||
|
) do |f| %>
|
||
|
|
||
13 years ago
|
<%= devise_error_messages! %>
|
||
|
|
||
13 years ago
|
<div class="inputs">
|
||
|
<%= f.input :email %>
|
||
|
</div>
|
||
13 years ago
|
|
||
13 years ago
|
<div class="form-actions">
|
||
|
<%= f.submit "Resend confirmation instructions", class: 'btn btn-primary' %>
|
||
|
</div>
|
||
13 years ago
|
<% end %>
|