source: src/main/resources/templates/addProjection.html@ a9ffccd

Last change on this file since a9ffccd was 39a45e6, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago

updates in html

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[a073dad]1<th:block xmlns:th="http://www.thymeleaf.org">
2
[b5ce654]3 <div class="container" style="color: white">
[39a45e6]4 <h1 class="jumbotron-heading">Додади нова проекција</h1>
[a073dad]5 <div class="row">
6 <div class="col-md-5">
7 <form action="/home/addP" method="POST">
8
9 <div class="form-group">
[39a45e6]10 <label for="type_of_technology">Тип на технологија</label>
[a073dad]11 <input type="text"
12 class="form-control"
13 id="type_of_technology"
14 name="type_of_technology"
15 >
16 </div>
17 <div class="form-group">
[39a45e6]18 <label for="date_time_start">Почетен датум</label>
[a073dad]19 <input type="date"
20 class="form-control"
21 id="date_time_start"
22 name="date_time_start"
23 >
24 </div>
25 <div class="form-group">
[39a45e6]26 <label for="date_time_end">Краен датум</label>
[a073dad]27 <input type="date"
28 class="form-control"
29 id="date_time_end"
30 name="date_time_end"
31 >
32 </div>
33 <div class="form-group">
[39a45e6]34 <label>Филм</label>
[a073dad]35 <select name="id_film" id="f1" class="form-control">
36 <option
37 th:each="f : ${films}"
38 th:value="${f.id_film}"
39 th:text="${f.name}">
40 </option>
41 </select>
42 </div>
43
[39a45e6]44 <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary">Додади</button>
[a073dad]45 </form>
46 </div>
47 </div>
48 </div>
49
50</th:block>
Note: See TracBrowser for help on using the repository browser.