10 lines
292 B
Plaintext
10 lines
292 B
Plaintext
<h1>Register</h1>
|
|
|
|
<%= simple_form_for @user do |f| %>
|
|
<%= f.input :name, label: "Display Name" %>
|
|
<%= f.input :ign, label: "Case sensitive Minecraft name" %>
|
|
<%= f.input :email %>
|
|
<%= f.input :password %>
|
|
<%= f.input :password_confirmation %>
|
|
<%= f.submit "Register" %>
|
|
<% end %> |