Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <% provide(:title, "Edit user") %>
  2. <h1>Update your profile</h1>
  3.  
  4. <div class="row">
  5. <div class="span6 offset 3">
  6. <%= form_for(@user) do |f| %>
  7. <%= render 'shared/error_messages' %>
  8.  
  9. <%= f.label :name %>
  10. <%= f.text_field :name %>
  11.  
  12. <%= f.label :email %>
  13. <%= f.text_field :email %>
  14.  
  15. <%= f.label :phone %>
  16. <%= f.text_field :phone %>
  17.  
  18. <%= f.label :password %>
  19. <%= f.password_field :password %>
  20.  
  21. <%= f.label :password_confirmation, "Confirm Password" %>
  22. <%= f.password_field :password_confirmation %>
  23.  
  24. <%= f.submit "Save changes", class: "btn btn-large btn-primary" %>
  25. <% end %>
  26.  
  27. <%= gravatar_for @user %>
  28. <a href="http://gravatar.com/emails">change</a>
  29. </div>
  30. </div>
  31.  
  32. <h1>Add a Textbook</h1>
  33. <div class="row">
  34. <div class="span6 offset 3">
  35. <%= form_for(@user.textbooks) do |f| %>
  36. <%= render 'shared/error_messages' %>
  37.  
  38. <%= f.label :title %>
  39. <%= f.text_field :title %>
  40.  
  41. <%= f.label :author %>
  42. <%= f.text_field :author %>
  43.  
  44. <%= f.label :course %>
  45. <%= f.text_field :course %>
  46.  
  47. <%= f.label :isbn %>
  48. <%= f.text_field :isbn %>
  49.  
  50. <%= f.label :version %>
  51. <%= f.text_field :version %>
  52.  
  53. <%= f.label :price %>
  54. <%= f.text_field :price %>
  55.  
  56. <%= f.submit "Add book", class: "btn btn-large btn-primary" %>
  57. <% end %>
  58. </div>
  59. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement