maximalink/devise-i18n-bootstrap

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

Summary

Maintainability
Test Coverage
<h2><%= t('.resend_unlock_instructions', default: 'Resend unlock instructions') %></h2>

<%= simple_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
  <%= f.error_notification class: 'alert alert-danger' %>
  <%= f.full_error :unlock_token %>

  <div class="form-inputs">
    <%= f.input :email, autofocus: true, required: true %>
  </div>

  <div class="form-actions">
    <%= f.button :submit, t('.resend_unlock_instructions', default: 'Resend unlock instructions') %>
  </div>
<% end %>

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