Changeset 633b371 for src


Ignore:
Timestamp:
02/10/23 14:52:47 (21 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
a8b6e6a
Parents:
04153a9
Message:

design changes

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

Legend:

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

    r04153a9 r633b371  
    1010    .container{
    1111
    12         position: relative;
     12        display: contents;
     13        margin: 5%;
    1314    }
    1415
     
    179180        margin-top: 100px;
    180181        display: flex;
     182        flex-wrap: wrap;
    181183        align-items: flex-start;
    182         justify-content: flex-start;
     184        justify-content: space-around;
    183185    }
    184186    .button {
     
    199201</style>
    200202<div>
    201     <form th:action="@{'/home/events'}"
     203    <form style="margin-left: 20px" th:action="@{'/home/events'}"
    202204          th:method="GET">
    203205
    204206        <div class="form-group">
    205             <label style="color: white;font-size: 20px;font-weight: bold">Кино</label>
     207            <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label>
    206208            <select name="id_cinema" class="form-control" id="id_cinema">
    207209                <option
  • src/main/resources/templates/film.html

    r04153a9 r633b371  
    6565                  th:method="POST">
    6666                <div class="form-group">
    67                     <label style="color: black;font-size: 20px;font-weight: bold">Оцени:</label>
    68                 <input required type="text" id="rate" name="rate">
     67                    <label style="color: white;font-size: 20px;font-weight: bold">Оцени:</label>
     68                <input class="form-control" required type="text" id="rate" name="rate">
    6969                </div>
    7070                <button class="button" type="submit">Додади Оцена</button>
  • src/main/resources/templates/films.html

    r04153a9 r633b371  
    99
    1010    .container{
    11 
    12         position: relative;
     11        display: contents;
     12        margin: 10%;
    1313    }
    1414
     
    179179        margin-top: 100px;
    180180        display: flex;
     181        flex-wrap: wrap;
    181182        align-items: flex-start;
    182         justify-content: flex-start;
     183        justify-content: space-around;
    183184    }
    184185    .button {
     
    200201</style>
    201202<div>
    202     <form th:action="@{'/home/films'}"
     203    <form style="margin-left: 20px" th:action="@{'/home/films'}"
    203204        th:method="GET">
    204205
    205206    <div class="form-group">
    206         <label style="color: white;font-size: 20px;font-weight: bold">Кино</label>
     207        <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label>
    207208        <select name="id_cinema" class="form-control" id="id_cinema">
    208209            <option
     
    216217    </div>
    217218        <button class="button" type="submit">Filter</button>
    218 </form>
     219    </form>
    219220
    220221<div xmlns:th="http://www.thymeleaf.org">
    221     <div class="main" style="width: available;height: available">
     222    <div class="main" style="width: available;height: available;padding: 5%">
    222223        <div    th:if="${films.isEmpty()} == false"
    223224                th:each="film : ${films}" class="container">
  • src/main/resources/templates/projections.html

    r04153a9 r633b371  
    99
    1010    .container{
    11 
    12         position: relative;
     11        display: contents;
     12        margin: 5%;
    1313    }
    1414
     
    179179        margin-top: 100px;
    180180        display: flex;
     181        flex-wrap: wrap;
    181182        align-items: flex-start;
    182         justify-content: flex-start;
     183        justify-content: space-around;
    183184    }
    184185    .button {
     
    199200</style>
    200201<div>
    201     <form th:action="@{'/home/projections'}"
     202    <form style="margin-left: 20px" th:action="@{'/home/projections'}"
    202203          th:method="GET">
    203204
    204205        <div class="form-group">
    205             <label style="color: white;font-size: 20px;font-weight: bold">Кино</label>
     206            <label style="color: white;font-size: 20px;font-weight: bold">Избери Кино:</label>
    206207            <select name="id_cinema" class="form-control" id="id_cinema">
    207208                <option
  • src/main/resources/templates/register.html

    r04153a9 r633b371  
    4949        </div>
    5050        </p>
    51         <button class="btn btn-lg btn-primary btn-block" type="submit">Регистрирај се</button>
     51        <button style="background-color: #ff5019;border-color: #ff5019" class="btn btn-lg btn-primary btn-block" type="submit">Регистрирај се</button>
    5252    </form>
    53     <a href="/login" class="btn btn-block btn-light">Имаш постоечки профил? Најави се тука</a>
     53    <a href="/login" style="margin-top: 20px" class="btn btn-block btn-light">Имаш постоечки профил? Најави се тука</a>
    5454</div>
  • src/main/resources/templates/registerWorker.html

    r04153a9 r633b371  
    3333    </p>
    3434
    35     <button class="btn btn-lg btn-primary btn-block" type="submit">Регистрирај се</button>
     35    <button style="background-color: #ff5019;border-color: #ff5019" class="btn btn-lg btn-primary btn-block" type="submit">Регистрирај се</button>
    3636  </form>
    3737
Note: See TracChangeset for help on using the changeset viewer.