source: src/main/resources/templates/addProjection.html@ 89438a3

Last change on this file since 89438a3 was 0fb69cc, checked in by DenicaKj <dkorvezir@…>, 22 months ago

Adding Events To Home Page

  • Property mode set to 100644
File size: 2.1 KB
Line 
1<th:block xmlns:th="http://www.thymeleaf.org">
2
3 <div class="container" style="color: white">
4 <h1 class="jumbotron-heading">Add New Projection</h1>
5 <div class="row">
6 <div class="col-md-5">
7 <form action="/home/addP" method="POST">
8
9 <div class="form-group">
10 <label for="type_of_technology">Type Of Technology</label>
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">
18 <label for="date_time_start">Start Date</label>
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">
26 <label for="date_time_end">End Date</label>
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">
34 <label>Film</label>
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
44 <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary">Add Projection</button>
45 </form>
46 </div>
47 </div>
48 </div>
49
50</th:block>
Note: See TracBrowser for help on using the repository browser.