libertarian-party/partynest

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

Summary

Maintainability
Test Coverage
<div class="container">
  <h1><%= translate '.resend_unlock_instructions' %></h1>

  <%= simple_form_for resource, as: resource_name, url: unlock_path(resource_name) do |f| %>
    <%= f.error_notification %>
    <%= f.full_error :unlock_token %>

    <%= f.input :email,
                required: true,
                autofocus: true,
                input_html: { autocomplete: 'email' } %>

    <%= f.button :submit, translate('.resend_unlock_instructions') %>
  <% end %>

  <%= render 'users/shared/links' %>
</div>