Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="icon" href="/static/favicon.ico" th:href="favicon.ico"/>
  6. <title img="/static/images/logoMale.png" th:href="@{images/logoMale.png}">Yourganizer</title>
  7. <link rel="stylesheet" href="/static/css/style.css" th:href="@{css/style.css}" type="text/css"/>
  8. </head>
  9. <html>
  10. <body class="my-body" th:style="'background-image: url(/images/background.jpg);'">
  11. <div class="mainPageContainer">
  12.  
  13. <form style="display: inline-block; text-align: center" action="#" method="post" th:action="@{/add}" th:object="${task}">
  14.  
  15. <label for="startime" class="klasa">Data początkowa</label><br/>
  16. <input id="startime" type="datetime-local" class="block" placeholder="Start time" th:field="*{start}"><br/>
  17.  
  18.  
  19. <label for="endtime" class="klasa">Data końcowa</label><br/>
  20. <input id="endtime" type="datetime-local" class="block" placeholder="End Time" th:field="*{end}"><br/>
  21.  
  22. <input type="text" class="block" placeholder="Treść" th:field="*{title}"><br/>
  23. <br>
  24. <button>Dodaj zadanie</button>
  25. </form>
  26. </div>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement