Advertisement
Guest User

546456

a guest
Jun 14th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.26 KB | None | 0 0
  1. <div class="modal fade" id="newPersonModal">
  2. <div class="modal-dialog modal-lg" style=" width: 900px !important;">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <h4>Добавить новое ответственное лицо</h4>
  6. <a href="#" class="close" data-dismiss="modal">&times;</a>
  7. </div>
  8. <form id="NewPersonForm">
  9. <div class="modal-body">
  10. <h5 style="color:#1ABC9C">Данные о заказчике</h5>
  11. <hr />
  12. <div class="form-horizontal">
  13. <input type="hidden" id="ClientKey" />
  14. <div class="form-group ml-3 mr-3">
  15. <label class="control-label">
  16. Наименование организации
  17. </label>
  18. <div>
  19. <input type="text" id="name" name="name" placeholder="Введите наименование организации" class="form-control" />
  20. </div>
  21. <div class="row mt-3">
  22.  
  23. <label class="control-label col-md-2">
  24. Введите ИНН:
  25. </label>
  26. <div class="col-md-3">
  27. <input type="text" id="inn" name="inn" placeholder="123456789012" class="form-control" />
  28. </div>
  29. <label class="control-label col-md-2">
  30. Введите КПП:
  31. </label>
  32. <div class="col-md-3">
  33. <input type="text" id="kpp" name="kpp" placeholder="123456789012" class="form-control" />
  34. </div>
  35.  
  36. </div>
  37. </div>
  38. </div>
  39.  
  40. <h5 style="margin-top:10px;color:#1ABC9C">Ответственное лицо</h5>
  41. <hr />
  42. <div class="form-horizontal">
  43. <input type="hidden" id="PersonId" />
  44. <div class="row">
  45. <label class="control-label col-md-2">
  46. Фамилия
  47. </label>
  48. <div class="col-md-4">
  49. <input type="text" id="personLastName" name="personLastName" placeholder="Пласкевич" class="form-control" />
  50. </div>
  51.  
  52. <label class="control-label col-md-2">
  53. Почта
  54. </label>
  55. <div class="col-md-4">
  56. <input type="email" id="personEmail" name="personEmail" placeholder="Uchebnayapraktika@help.com" class="form-control" />
  57. </div>
  58. </div>
  59. <div class="row">
  60. <label class="control-label col-md-2">
  61. Имя
  62. </label>
  63. <div class="col-md-4">
  64. <input type="text" id="personFirstName" name="personFirstName" placeholder="Анастасия" class="form-control" />
  65. </div>
  66.  
  67. <label class="control-label col-md-2">
  68. Телефон
  69. </label>
  70. <div class="col-md-4">
  71. <input type="text" id="personPhoneNumber" name="personPhoneNumber" placeholder="235-56-67" class="form-control" />
  72. </div>
  73. </div>
  74. <div class="row">
  75. <label class="control-label col-md-2">
  76. Отчество
  77. </label>
  78. <div class="col-md-4">
  79. <input type="text" id="personPatronymic" name="personPatronymic" placeholder="Викторовна" class="form-control" />
  80. </div>
  81. <label class="control-label col-md-2">
  82. Заметка
  83. </label>
  84. <div class="col-md-4">
  85. <input type="text" id="personInfo" name="personInfo" placeholder="Звонить до обеда" class="form-control" />
  86. </div>
  87. </div>
  88. <br />
  89. <div class="col-md-3 offset-9">
  90. <a id="addToList" class="btn btn-primary" onclick="govno()">Добавить в список</a>
  91.  
  92. </div>
  93. <br />
  94. <br />
  95. <table id="detailsTable" class="table">
  96. <thead>
  97. <tr>
  98. <th>Имя</th>
  99. <th>Фамилия</th>
  100. <th>Отчество</th>
  101. <th>Почта</th>
  102. <th>Телефон</th>
  103. <th>Дополнительно</th>
  104. <th></th>
  105. </tr>
  106. </thead>
  107. <tbody></tbody>
  108. </table>
  109. </div>
  110. </div>
  111. <div class="modal-footer">
  112. <button type="reset" class="btn btn-default" data-dismiss="modal">Закрыть</button>
  113. <button id="savePerson" type="submit" class="btn btn-success" onclick="savePerson()">Сохранить</button>
  114. </div>
  115. </form>
  116. </div>
  117. </div>
  118. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement