10 lines
257 B
Plaintext
10 lines
257 B
Plaintext
<h1>Register</h1>
|
|
|
|
<%= simple_form_for @user do |f| %>
|
|
<%= f.input :name %>
|
|
<%= f.input :ign, label: "Exact ingame name" %>
|
|
<%= f.input :email %>
|
|
<%= f.input :password %>
|
|
<%= f.input :password_confirmation %>
|
|
<%= f.submit "Register" %>
|
|
<% end %> |