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

Changes in html

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.