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.
18 lines
429 B
18 lines
429 B
<%= render :partial => "devise/shared/links" %> |
|
|
|
<%= simple_form_for(resource, |
|
as: resource_name, |
|
url: unlock_path(resource_name), |
|
html: { :method => :post, class: 'form-horizontal' } |
|
) do |f| %> |
|
|
|
<%= devise_error_messages! %> |
|
|
|
<div class="actions"> |
|
<%= f.input :email %> |
|
</div> |
|
|
|
<div class="form-actions"> |
|
<%= f.submit "Resend unlock instructions", class: 'btn btn-primary' %> |
|
</div> |
|
<% end %>
|
|
|