source: src/main/resources/templates/addEvent.html@ 5444409

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

updates in html

  • Property mode set to 100644
File size: 2.6 KB
Line 
1<th:block xmlns:th="http://www.thymeleaf.org">
2 <div style="color: white" class="container">
3 <h1 class="jumbotron-heading">Додани нов настан</h1>
4 <div class="row">
5 <div class="col-md-5">
6 <form action="/home/addE" method="POST">
7 <div class="form-group">
8 <label for="theme">Тема</label>
9 <input type="text"
10 class="form-control"
11 id="theme"
12 name="theme"
13 required
14 placeholder="внеси тема">
15 </div>
16 <div class="form-group">
17 <label for="duration">Траење</label>
18 <input type="text"
19 class="form-control"
20 id="duration"
21 name="duration"
22 placeholder="Duration">
23 </div>
24 <div class="form-group">
25 <label for="repeating">Дали се повторува</label>
26 <input type="text"
27 class="form-control"
28 id="repeating"
29 name="repeating"
30 placeholder="">
31 </div>
32 <div class="form-group">
33 <label for="start_date">Почетен датум</label>
34 <input type="date"
35 class="form-control"
36 id="start_date"
37 name="start_date"
38 >
39 </div>
40 <div class="form-group">
41 <label for="img_url">Слика</label>
42 <input type="text"
43 class="form-control"
44 id="img_url"
45 name="img_url"
46 placeholder="URL">
47 </div>
48
49 <button style="background-color: #ff5019" id="submit" type="submit" class="btn btn-primary">Додади</button>
50 </form>
51 </div>
52
53 </div>
54
55 <button style="background-color: #ff5019" class="btn btn-primary"><a style="color: white" href="/addEventToCinema">Додади настан во кинотека</a></button>
56
57 </div>
58
59</th:block>
Note: See TracBrowser for help on using the repository browser.