Changeset 4158cac


Ignore:
Timestamp:
08/24/23 12:25:25 (9 months ago)
Author:
milamihajlovska <mila.mihajlovska01@…>
Branches:
master
Children:
4173acf
Parents:
bcb4acc
Message:

Changes in html

Location:
src/main/resources/templates
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/events.html

    rbcb4acc r4158cac  
    203203    <form style="margin-left: 20px" th:action="@{'/home/events'}"
    204204          th:method="GET">
    205 
    206         <div class="form-group">
    207             <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label>
    208             <select name="id_cinema" class="form-control" id="id_cinema">
    209                 <option th:value="${null}" text="Please Select"></option>
    210                 <option
    211                         th:each="cinema : ${cinemas}"
    212                         th:value="${cinema.getId_cinema()}"
    213                         th:text="${cinema.getName()}">
    214                 </option>
    215             </select>
    216 
     205        <div class="row">
     206
     207            <div class="form-group col-2">
     208                <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label>
     209                <select name="id_cinema" class="form-control" id="id_cinema">
     210                    <option th:value="${null}" text="Please Select"></option>
     211                    <option
     212                            th:each="cinema : ${cinemas}"
     213                            th:value="${cinema.getId_cinema()}"
     214                            th:text="${cinema.getName()}">
     215                    </option>
     216                </select>
     217
     218
     219            </div>
     220            <div class="col-10 mt-4">
     221                <button class="button" type="submit">Филтрирај</button>
     222            </div>
    217223        </div>
    218         <button class="button" type="submit">Filter</button>
     224
    219225    </form>
    220226
  • src/main/resources/templates/films.html

    rbcb4acc r4158cac  
    203203    <form style="margin-left: 20px" th:action="@{'/home/films'}"
    204204        th:method="GET">
    205 
    206     <div class="form-group">
     205<div class="row">
     206
     207    <div class="form-group col-2">
    207208        <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label>
    208209        <select name="id_cinema" class="form-control" id="id_cinema">
     
    216217
    217218    </div>
    218         <div class="form-group">
    219             <label style="color: white;font-size: 20px;font-weight: bold">Избери Жарн:</label>
     219        <div class="form-group col-2">
     220            <label style="color: white;font-size: 20px;font-weight: bold">Избери Жанр:</label>
    220221            <select name="id_genre" class="form-control" id="id_genre">
    221222                <option th:value="${null}" text="Please Select"></option>
     
    228229
    229230        </div>
    230         <button class="button" type="submit">Filter</button>
     231    <div class="col-8 mt-4">
     232        <button class="button" type="submit">Филтрирај</button>
     233
     234    </div>
     235</div>
    231236    </form>
    232237
     
    259264    </div>
    260265</div>
     266</div>
  • src/main/resources/templates/projections.html

    rbcb4acc r4158cac  
    202202    <form style="margin-left: 20px" th:action="@{'/home/projections'}"
    203203          th:method="GET">
    204 
    205         <div class="form-group">
     204<div class="row">
     205
     206        <div class="form-group col-2">
    206207            <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label>
    207208            <select name="id_cinema" class="form-control" id="id_cinema">
     
    215216
    216217        </div>
    217         <button class="button" type="submit">Filter</button>
     218    <div class="col-10 mt-4">
     219        <button class="button" type="submit">Филтрирај</button>
     220    </div>
     221
     222</div>
     223
    218224    </form>
    219225<div xmlns:th="http://www.thymeleaf.org">
Note: See TracChangeset for help on using the changeset viewer.