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.
|
|
|
<div class="page-header">
|
|
|
|
<h1>Resend unlock instructions</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= 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 %>
|
|
|
|
|
|
|
|
<%= render :partial => "devise/shared/links" %>
|