<%= simple_form_for @user, :url => password_checking_path(@user.id), id: 'enter-you-password-form', method: :post do |f| %> <%= f.error_notification %>

Email: <%= @user.email %>. (<%= link_to "want to use a different email?", email_input_path %>)

<%= f.input :password, autofocus: true, hint: link_to("forgot your password?", i_forgot_my_password_path) %>
<%= f.input_field :remember_me, as: :boolean, boolean_style: :inline, checked: 'checked' %>  remember me

<% unless @user.visible_name_present? %>

Please take a few seconds to enter your name.

<%= f.input :first_name %> <%= f.input :last_name %> <% # i want certain sites to use a different label for this. They can add a partial in host app. %> <%= f.input :other_name, label: render('shared/other_name_label') %>
<% end %> <%= f.submit 'log in!', class: 'btn btn-primary' %> <% end %>