Guest User

Untitled

a guest
May 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <h1>Users#new</h1>
  2.  
  3. <%= form_for :user do |f| %>
  4. <%= f.label :name %><br />
  5. <%= f.text_field :name, autofocus: true %><br />
  6.  
  7. <%= f.label :password %><br />
  8. <%= f.password_field :password %><br />
  9.  
  10. <%= f.label :password_confirmation %><br />
  11. <%= f.password_field :password_confirmation %><br />
  12.  
  13. <%= f.label :height %><br />
  14. <%= f.text_field :height %><br />
  15.  
  16. <%= f.label :tickets %><br />
  17. <%= f.text_field :tickets %><br />
  18.  
  19. <%= f.label :nausea %><br />
  20. <%= f.text_field :nausea %><br />
  21.  
  22. <%= f.label :happiness %><br />
  23. <%= f.text_field :happiness %><br />
  24.  
  25. <%= f.label :admin %>
  26. <%= f.check_box :admin %><br />
  27.  
  28. <%= f.submit "Create User" %>
  29.  
  30. <% end %>
Add Comment
Please, Sign In to add comment