% title('Cards') %>
<%= javascript_tag "window._token = '#{form_authenticity_token}'" %>
<% if user_signed_in? %>
<%= link_to 'Select Your Cards', select_cards_path,
class: "btn btn-secondary btn-sm#{' btn-attention' if @user_cards.empty?}" %>
<%= render 'form', url: cards_path %>
<%= render 'layouts/progress', value: @count, min: 0, max: @total %>
<% else %>
<%= render 'form', url: cards_path %>
<% end %>