Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6.  
  7. <title>Dodaj użytkownika</title>
  8.  
  9. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
  10. integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
  11. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
  12. integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
  13. <body>
  14.  
  15. <div th:replace="header"/>
  16.  
  17.  
  18. <!--<div class="container" align="center">-->
  19.  
  20. <!--<br><br><br>-->
  21. <!--<H1>Dodaj pracownika</H1>-->
  22.  
  23. <!--<form class="form-control-sm" th:action="@{/api/employee/add}" th:object="${employee}" method="post">-->
  24. <!--<div class="form-group mx-sm-3 mb-2">-->
  25. <!--<h5>Imię: </h5>-->
  26. <!--<input type="text" class="form-inlin justify-content-center" th:field="*{firstName}">-->
  27. <!--</div>-->
  28. <!--<div class="form-group mx-sm-3 mb-2">-->
  29. <!--<h5>Nazwisko: </h5>-->
  30. <!--<input type="text" class="form-inlin justify-content-center" th:field="*{lastName}">-->
  31. <!--</div>-->
  32. <!--<button type="submit" class="btn btn-success mx-sm-3 mb-2">Dodaj pracownika</button>-->
  33. <!--</form>-->
  34. <!--</div>-->
  35.  
  36. <div class="container" style="margin-top:100px">
  37. <!-- Marketing Icons Section -->
  38. <div class="row">
  39. <div class="col-lg-12 mb-4">
  40. <div class="card h-100 text-center">
  41. <h1 class="card-header text-white bg-dark">
  42. Dodaj pracownika
  43. </h1>
  44. <div class="card-body">
  45. <div class="container">
  46. <form th:action="@{/api/employee/add}" th:object="${employee}" method="post">
  47. <div class="row">
  48. <div class="col">
  49. <input type="text" class="form-control" placeholder="Imię" th:field="*{firstName}">
  50. </div>
  51. <div class="col">
  52. <input type="text" class="form-control" placeholder="Nazwisko" th:field="*{lastName}">
  53. </div>
  54. <button type="submit" class="btn btn-success mx-sm-3 mb-2">Dodaj pracownika</button>
  55. </div>
  56. </form>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63.  
  64.  
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement