Guest User

Untitled

a guest
May 27th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <% form_for @user do |f| %>
  2. <%= f.error_messages %>
  3. <fieldset>
  4. <legend>Your Details</legend>
  5. <ol>
  6. <li>
  7. <%= f.label :login, 'Username' %>
  8. <%= f.text_field :login %>
  9. </li>
  10. <li>
  11. <%= f.label :email %>
  12. <%= f.text_field :email %>
  13. </li>
  14. <li>
  15. <%= f.label :password %>
  16. <%= f.password_field :password %>
  17. </li>
  18. <li>
  19. <%= f.label :password_confirmation, 'Confirm Password' %>
  20. <%= f.password_field :password_confirmation %>
  21. </li>
  22. </ol>
  23. </fieldset>
  24. <div class="buttons">
  25. <%= submit_tag 'Sign up' %>
  26. </div>
  27. <% end %>
Add Comment
Please, Sign In to add comment