Guest User

Untitled

a guest
May 27th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <h1>AutoLeads</h2>
  2.  
  3. <%= error_messages_for :auto_lead, :user %>
  4.  
  5. <% form_for(@auto_lead) do |f| %>
  6.  
  7. <p>
  8. <%= f.label :zip_code %> <br/>
  9. <%= f.text_field :zip_code %>
  10. </p>
  11.  
  12. <p>
  13. <%= f.label :description %><br/>
  14. <%= f.text_area :description %>
  15. </p>
  16. <% if logged_in? %>
  17. <%= current_user.login %>
  18. <% else %>
  19. <% fields_for(@user) do |i| %>
  20. <hr/>
  21. <p>
  22. <%= i.label :login %><br/>
  23. <%= i.text_field :login %>
  24. </p>
  25. <p>
  26. <%= i.label :email %><br/>
  27. <%= i.text_field :email %>
  28. </p>
  29. <p>
  30. <%= i.label :password %><br/>
  31. <%= i.text_field :password %>
  32. </p>
  33. <p>
  34. <%= i.label :password_confirmation %><br/>
  35. <%= i.text_field :password_confirmation %>
  36. </p>
  37. <% end %>
  38. <% end %>
  39.  
  40.  
  41. <p>
  42. <%= f.submit 'Submit' %>
  43. </p>
  44. <% end %>
Add Comment
Please, Sign In to add comment