- Timestamp:
- 02/10/23 14:52:47 (21 months ago)
- Branches:
- master
- Children:
- a8b6e6a
- Parents:
- 04153a9
- Location:
- src/main/resources/templates
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/events.html
r04153a9 r633b371 10 10 .container{ 11 11 12 position: relative; 12 display: contents; 13 margin: 5%; 13 14 } 14 15 … … 179 180 margin-top: 100px; 180 181 display: flex; 182 flex-wrap: wrap; 181 183 align-items: flex-start; 182 justify-content: flex-start;184 justify-content: space-around; 183 185 } 184 186 .button { … … 199 201 </style> 200 202 <div> 201 <form th:action="@{'/home/events'}"203 <form style="margin-left: 20px" th:action="@{'/home/events'}" 202 204 th:method="GET"> 203 205 204 206 <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> 206 208 <select name="id_cinema" class="form-control" id="id_cinema"> 207 209 <option -
src/main/resources/templates/film.html
r04153a9 r633b371 65 65 th:method="POST"> 66 66 <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"> 69 69 </div> 70 70 <button class="button" type="submit">Додади Оцена</button> -
src/main/resources/templates/films.html
r04153a9 r633b371 9 9 10 10 .container{ 11 12 position: relative;11 display: contents; 12 margin: 10%; 13 13 } 14 14 … … 179 179 margin-top: 100px; 180 180 display: flex; 181 flex-wrap: wrap; 181 182 align-items: flex-start; 182 justify-content: flex-start;183 justify-content: space-around; 183 184 } 184 185 .button { … … 200 201 </style> 201 202 <div> 202 <form th:action="@{'/home/films'}"203 <form style="margin-left: 20px" th:action="@{'/home/films'}" 203 204 th:method="GET"> 204 205 205 206 <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> 207 208 <select name="id_cinema" class="form-control" id="id_cinema"> 208 209 <option … … 216 217 </div> 217 218 <button class="button" type="submit">Filter</button> 218 </form>219 </form> 219 220 220 221 <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%"> 222 223 <div th:if="${films.isEmpty()} == false" 223 224 th:each="film : ${films}" class="container"> -
src/main/resources/templates/projections.html
r04153a9 r633b371 9 9 10 10 .container{ 11 12 position: relative;11 display: contents; 12 margin: 5%; 13 13 } 14 14 … … 179 179 margin-top: 100px; 180 180 display: flex; 181 flex-wrap: wrap; 181 182 align-items: flex-start; 182 justify-content: flex-start;183 justify-content: space-around; 183 184 } 184 185 .button { … … 199 200 </style> 200 201 <div> 201 <form th:action="@{'/home/projections'}"202 <form style="margin-left: 20px" th:action="@{'/home/projections'}" 202 203 th:method="GET"> 203 204 204 205 <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> 206 207 <select name="id_cinema" class="form-control" id="id_cinema"> 207 208 <option -
src/main/resources/templates/register.html
r04153a9 r633b371 49 49 </div> 50 50 </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> 52 52 </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> 54 54 </div> -
src/main/resources/templates/registerWorker.html
r04153a9 r633b371 33 33 </p> 34 34 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> 36 36 </form> 37 37
Note:
See TracChangeset
for help on using the changeset viewer.