15 lines
479 B
Plaintext
15 lines
479 B
Plaintext
<h2>Resend unlock instructions</h2>
|
|
|
|
<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
|
|
<%= render "devise/shared/error_messages", resource: resource %>
|
|
<p>
|
|
<%= f.label :email %><br />
|
|
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
|
|
</p>
|
|
<p class="mt-8">
|
|
<%= f.submit "Resend unlock instructions", class: 'btn-md btn-blue' %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<%= render "devise/shared/links" %>
|