
<div class="title mt-4 mb-8"><%= _("Send instructions to unlock account") %></div>
<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
  <div class="form-group mb-4">
    <%= f.text_field :email, autofocus: true, autocomplete: "email", class: "form-control", required: true %>
    <%= f.label :email %>

  </div>
  <button type="submit" class="submit-button btn btn-block btn-secondary my-4 mx-auto" aria-label="LOG IN">
    Enviar
  </button>
<% end %>
<%= render "auth/shared/links" %>

