<% content_for :meta_title, 'Create your password' %> <% content_for :meta_description, "You need to create a password so that we can log you in." %>

Create Your Password & We'll Log You Right In

<%= simple_form_for @user, :url => password_creation_path(@user.id), 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 %> <%= f.input :password_confirmation %>
<%= f.input_field :remember_me, as: :boolean, boolean_style: :inline, checked: 'checked' %>  remember me

<%= f.submit 'Create password and log in!', class: 'btn btn-primary' %> <% end %>