Sign up

<%= simple_form_for @user do |f| %>
<%= f.label :name, "Display name" %> <%= f.label :ign, "Minecraft name" %> <%= f.label :email, "Email" %> <%= f.label :password, "Password" %> <%= f.label :password_confirmation, "Confirm" %>
<%= f.input :name, placeholder: "John" %> <%= f.input :ign, placeholder: "johndoe_1337" %> <%= f.input :email, placeholder: "johndoe@example.com" %> <%= f.input :password, placeholder: "••••••" %> <%= f.input :password_confirmation, placeholder: "••••••" %>
<%= f.submit "Sign up", class: "btn blue" %> <% end %>