%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
<%= t('common.forms.auth.resend_unlock_instructions') %>
<%= render "devise/shared/error_messages", resource: resource %>
<%= f.label :email, class: "sr-only" %>
<%= f.email_field :email,
autofocus: true,
autocomplete: "email"
placeholder: t('common.forms.auth.email') %>
<%= f.submit t('common.forms.auth.resend_unlock_instructions'), class: "btn btn-dark btn-block" %>
<% end %>
<%= render "devise/shared/links" %>