source: src/main/resources/templates/addEventToCinema.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: 1.5 KB
RevLine 
[fc448f5]1<th:block xmlns:th="http://www.thymeleaf.org">
2
3 <div class="container" style="color: white">
[39a45e6]4 <h1 class="jumbotron-heading">Додади настан во кинотека</h1>
[fc448f5]5 <div class="row">
6 <div class="col-md-5">
7 <form action="/home/addCinemaOrganizesEvent" method="POST">
8
9 <div class="form-group">
[39a45e6]10 <label>Кинотека</label>
[fc448f5]11 <select name="id_cinema" id="f1" class="form-control">
12 <option
13 th:each="c : ${cinemas}"
14 th:value="${c.id_cinema}"
15 th:text="${c.name}">
16 </option>
17 </select>
18 </div>
19
20 <div class="form-group">
[39a45e6]21 <label>Настан</label>
[fc448f5]22 <select name="id_event" id="f2" class="form-control">
23 <option
24 th:each="e : ${events}"
25 th:value="${e.id_event}"
26 th:text="${e.theme}">
27 </option>
28 </select>
29 </div>
[39a45e6]30 <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary">Додади </button>
[fc448f5]31 </form>
32 </div>
33 </div>
34 </div>
35
36</th:block>
Note: See TracBrowser for help on using the repository browser.