Guest User

Untitled

a guest
Mar 5th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1.  
  2. <H1>CREATE ACCOUNT</H1>
  3. <%= error_messages_for :user %>
  4. <% form_for :user, :url => users_path do |f| -%>
  5. <h3>Login Information</h3><div style="border: 1px solid #ddd; padding: 5px;"><p><label for="login">Login</label><br/>
  6. <%= f.text_field :login %></p>
  7.  
  8. <p><label for="password">Password</label><br/>
  9. <%= f.password_field :password %></p>
  10.  
  11. <p><label for="password_confirmation">Confirm Password</label><br/>
  12. <%= f.password_field :password_confirmation %></p>
  13. </div>
  14.  
  15. <h3>Business Information</h3>
  16. <div style="border: 1px solid #ddd; padding: 5px;">
  17. <p><label for="business_name">Business Name</label><br/>
  18. <%= f.text_field :business_name %></p>
  19.  
  20. <p><label for="business_address">Business Address</label><br/>
  21. <%= f.text_field :business_address %></p>
  22.  
  23. <p><label for="business_city">City</label><br/>
  24. <%= f.text_field :business_city %></p>
  25.  
  26. <p><label for="business_postcode">Postcode</label><br/>
  27. <%= f.text_field :business_postcode %></p>
  28.  
  29. <p><label for="business_telephone">Business Telephone</label><br/>
  30. <%= f.text_field :business_telephone %></p>
  31.  
  32. <p><label for="business_fax">Business Fax</label><br/>
  33. <%= f.text_field :business_fax %></p>
  34.  
  35. <p><label for="business_email">Business E-mail</label><br/>
  36. <%= f.text_field :business_email %></p>
  37.  
  38. <p><label for="business_web">Business Website</label><br/>
  39. <%= f.text_field :business_web %></p>
  40.  
  41. <p><label for="email">Core Business Activity</label><br/>
  42. <%= f.text_field :business_type %></p>
  43. </div>
  44.  
  45. <h3>Personal Information</h3>
  46. <div style="border: 1px solid #ddd; padding: 5px;">
  47. <p><label for="first_name">First Name</label><br/>
  48. <%= f.text_field :first_name %></p>
  49.  
  50. <p><label for="surname">Surname</label><br/>
  51. <%= f.text_field :surname %></p>
  52.  
  53. <p><label for="position">Position in company</label><br/>
  54. <%= f.text_field :position %></p>
  55.  
  56. <p><label for="email">Email</label><br/>
  57. <%= f.text_field :email %></p>
  58.  
  59. <p><label for="address">Address</label><br/>
  60. <%= f.text_field :address %></p>
  61.  
  62. <p><label for="city">City</label><br/>
  63. <%= f.text_field :city %></p>
  64.  
  65. <p><label for="postcode">Postcode</label><br/>
  66. <%= f.text_field :postcode %></p>
  67.  
  68. <p><label for="telephone">Telephone</label><br/>
  69. <%= f.text_field :telephone %></p>
  70. </div>
  71. <p><%= submit_tag 'Create' %></p>
  72. <% end -%>
Add Comment
Please, Sign In to add comment