Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. <div style = "@import url('https://fonts.googleapis.com/css?family=Open+Sans');font-family: Open Sans" id = "LogIn">
  2.  
  3. <label>
  4. <p>Country: </p>
  5. <input type = "text" placeholder = "" style = "margin-left:10px" required></input>
  6. </label><br>
  7.  
  8. <label>
  9. <p>Province: </p>
  10. <input type = "text" placeholder = "" style = "margin-left:10px" required></input>
  11. </label> <br>
  12.  
  13. <label>
  14. <p>City: </p>
  15. <input type = "text" placeholder = "" style = "margin-left:10px" required></input>
  16. </label><br>
  17.  
  18. <label>
  19. <p>Street Address: </p>
  20. <input type = "text" placeholder = "" style = "margin-left:10px" required></input>
  21. </label><br><br>
  22.  
  23. <label>
  24. <p>Price Range (CAD):
  25. <input type="number" name="quantity" min="1"></p>
  26. </label><br>
  27.  
  28. <label>
  29. <p>Is the price all inclusive:
  30. <input type = "radio"></input></p>
  31. </label><br>
  32.  
  33. <label>
  34. <p>Pet free:
  35. <input type = "radio"></input>
  36. </p>
  37. </label><br>
  38.  
  39. <label>
  40. <p>Smoking allowed:
  41. <input type = "radio"></input>
  42. </p>
  43. </label><br>
  44.  
  45. <label>
  46. <p>How many roommates will be there?
  47. <input type = "number" name = "quantity" min = "0"></input></p>
  48. </label><br>
  49.  
  50. <label>
  51. <p>Types of roommates:
  52. <select>
  53. <option value="all_male">All Male</option>
  54. <option value="all_female">All Female</option>
  55. <option value="no_pref">No Preference</option>
  56. <option value="na">Not Applicable</option>
  57. </select>
  58. </p>
  59. </label><br>
  60.  
  61. <label>
  62. <p>Number of bedrooms:
  63. <input type = "number" name = "quantity" min = "0"></input>
  64. </p>
  65. </label><br>
  66.  
  67. <label>
  68. <p>Number of bathrooms:
  69. <input type = "number" name = "quantity" min = "0"></input>
  70. </p>
  71. </label><br><br>
  72.  
  73. <label>
  74. <p>Description:</p>
  75. <input type = "text" style = "height:148px;width:300px;margin-left:25px"></input>
  76. </label><br><br>
  77.  
  78. <label>
  79. <input type = "submit" value = "Submit">
  80. </label>
  81.  
  82. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement