Advertisement
Filirien

Untitled

Apr 26th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. @model LandsSystem.Models.LandCreateModel
  2.  
  3. @{
  4. ViewBag.Title = "CreateLand";
  5. }
  6.  
  7. @using (Html.BeginForm("CreateLand", "Sell", FormMethod.Post))
  8. {
  9. <div id="content" style="min-height:calc(100vh - 80px); padding-bottom:100px;">
  10. <div class="container hidden-xs">
  11. <h1 class="title text-center">Fill the information below:</h1>
  12. <br />
  13. <br />
  14. <div class="row">
  15. <div class="col-md-6 col-md-offset-2">
  16. <form class="form-horizontal">
  17.  
  18. <div class="form-group">
  19.  
  20. <label class="col-sm-4 control-label text-right" style="margin-top:5px">
  21. Address<span class="required-marking"></span>
  22. </label>
  23. <div class="col-sm-8" style="margin-bottom:20px">
  24. <input type="text" class="form-control">
  25. </div>
  26. </div>
  27. <br />
  28.  
  29. <div class="form-group">
  30. <label class="col-sm-4 control-label text-right" style="margin-top:5px">
  31. Description<span class="required-marking"></span>
  32. </label>
  33. <div class="col-sm-8" style="margin-bottom:15px">
  34. <input type="text" class="form-control">
  35. </div>
  36. </div>
  37. <br />
  38.  
  39. <div class="form-group">
  40. <label class="col-sm-4 control-label text-right" style="margin-top:5px">
  41. Price<span class="required-marking"></span>
  42. </label>
  43. <div class="col-sm-8" style="margin-bottom:15px">
  44. <input type="number" class="form-control">
  45. </div>
  46. </div>
  47. <br />
  48.  
  49. <div class="form-group">
  50. <label class="col-sm-4 control-label text-right" style="margin-top:5px">
  51. Area<span class="required-marking"></span>
  52. </label>
  53. <div class="col-sm-8" style="margin-bottom:15px">
  54. <input type="number" class="form-control">
  55. </div>
  56. </div>
  57. <div class="form-group">
  58. <label class="col-sm-4 control-label text-right" style="margin-top:5px">
  59. Image URL<span class="required-marking"></span>
  60. </label>
  61. <div class="col-sm-8" style="margin-bottom:15px">
  62. <input type="text" class="form-control">
  63. </div>
  64. </div>
  65. <div class="form-group">
  66. <label class="col-sm-4 control-label text-right" style="margin-top:5px">
  67. <span class="required-marking"></span>
  68. </label>
  69. <div class="col-sm-8" style="margin-bottom:15px">
  70. <label><input type="checkbox" name="personality"> Electricity</label>
  71. <label><input type="checkbox" name="personality"> Water</label>
  72. <label><input type="checkbox" name="personality"> Sewage</label>
  73. </div>
  74. </div>
  75. <div class="form-group">
  76. <label class="col-sm-7 control-label text-right">
  77. </label>
  78. <div class="col-offset-7 col-sm-4">
  79. <a href="/Sell" class="btn btn-default">Back</a>
  80. <input type="submit" value="Create" class="btn btn-success"/>
  81. </div>
  82. </div>
  83.  
  84. </form>
  85. </div>
  86.  
  87. </div>
  88. </div>
  89. </div>
  90.  
  91.  
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement