Changeset f484b14 for src/main/resources/templates/deliveryForPart.html
- Timestamp:
- 01/06/23 02:51:45 (23 months ago)
- Branches:
- main
- Children:
- d4b888e
- Parents:
- 1bd8d1e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/deliveryForPart.html
r1bd8d1e rf484b14 13 13 </form> 14 14 <h3>Достава до овластен сервис</h3> 15 <h1 th:if="${hasError}" th:text="${error}"></h1> 16 <div th:if="${!hasError}"> 15 17 <form class="form-signin mt-xl-5" method="post" action="/part/repairshopdelivery"> 16 18 <p> 17 <label for="repairShop" class="sr-only">Избор на овластен сервис</label> 18 <select id="repairShop" required name="name"> 19 <option th:each="rs : ${repairShops}" 20 th:text="${rs.getName()}" 21 th:value="${rs.getId()}"> 19 <span>Избор на некоја од твоите коли</span> 20 <label for="vin" class="sr-only">Избор на некоја од твоите коли</label> 21 <select id="vin" required name="vin"> 22 <option th:each="car : ${cars}" 23 th:text="${car.getCar().getCartype()}" 24 th:value="${car.getVin()}"> 22 25 </option> 23 26 </select> 24 27 </p> 25 <button class="btn btn-lg btn-primary btn-block" type="submit"> Достава до сервис</button>28 <button class="btn btn-lg btn-primary btn-block" type="submit">Следно</button> 26 29 </form> 30 </div> 27 31 </main> 28 32
Note:
See TracChangeset
for help on using the changeset viewer.