lujanfernaud/prevy

View on GitHub
app/views/devise/unlocks/new.html.erb

Summary

Maintainability
Test Coverage
<div class="container">
  <div class="row justify-content-md-center">
    <div class="col-md-6 mt-2rem mb-2rem">

      <h2 class="text-center mt-2 mb-2rem">
        Resend unlock instructions
      </h2>

      <%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
        <%= devise_error_messages! %>

        <div class="form-group mt-4">
          <%= f.label :email %><br />
          <%= f.email_field :email, autofocus: true, autocomplete: "email",
            class: "form-control" %>
        </div>

        <div class="form-group mb-4">
          <%= f.submit "Resend unlock instructions",
            class: "btn btn-primary btn-block btn-lg btn-3d white-space-normal" %>
        </div>
      <% end %>

      <%= render "devise/shared/links" %>

    </div>
  </div>
</div>