estimancy/projestimate

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

Summary

Maintainability
Test Coverage
<h2>Resend confirmation instructions</h2>
<hr>

<%= simple_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %>

  <%= f.error_notification %>
  <%= f.full_error :confirmation_token %>
  <%= f.full_error :email %>

  <div class="form-inputs">
    <%= f.input :id_connexion, label: I18n.t(:login_name_or_email), required: true, autofocus: true %>
  </div>

  <%= f.button :submit, "Resend confirmation instructions" %>

<% end %>

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